各位大虾,我做的是注册页面,其中有一个判断是超级用户还是普通用户,我是这样写的 :
rs.addnew
rs("name")=name
rs("password")=password
if qq="管理员" then
rs("user_type")=1
else
rs("user_type")=0
rs.update
rs.close
conn.close
set rs=nothing
set conn=nothing
end if
session("name")=name
session("password")=password
response.write "恭喜你注册成功!你的用户名是:"
response.write session("name")
response.write "<br>"
response.write "你的密码是:"
response.write session("password")
response.write "<br>"
response.write "<a href='index.asp'>转到首页</a>"
end if
这个是其中一部分代码,但是就是当我选择管理员单选按钮时根本写不进去数据库,但是按普通的那个单选按钮就能写进去,但当我直接这样写:
if qq="管理员" then
rs.addnew
rs("name")=name
rs("password")=password
rs("user_type")=1
能写进管理员是肯定的,但又当点普通用户时出现问题了,你们说我要怎么写?谢谢
if qq="管理员" then
rs("user_type")=1
else
rs("user_type")=0
rs.update
rs.close
conn.close
set rs=nothing
set conn=nothing
end if
这里有问题,end if应在这里:
if qq="管理员" then
rs("user_type")=1
else
rs("user_type")=0
end if
rs.update
rs.close
conn.close
set rs=nothing
set conn=nothing