注册程序如下,IIS6.02K3数据库是MYSQLODBC是最新版当新用户注册时,LOGINID长度不让超过5个字符,实际上数据库中这个字段是20个字符长库LOGINID=trim(request(“LOGINID”))password=trim…
注册程序如下,IIS6.0 2K3 数据库是 MYSQL ODBC是最新版
当新用户注册时,LOGINID长度不让超过5个字符,实际上数据库中这个字段是20个字符长库
LOGINID = trim(request(“LOGINID”))
password = trim(request(“password”))
confirm_password = trim(request(“confirm_password”))
if (LOGINID=””) then
response.write “你丫没名字呀,滚回去”
response.end
end if
if (password=””) then
response.write “你丫开门不用钥匙,想做贼呢”
response.end
end if
if (password <> confirm_password) then
response.write “两次输入的密码不一致!”
response.end
end if
password=md5(password)
password=mid(password,”9″,”16″)
set rs=se