为啥我如下做不行呢?! 提示页面错误无法显示!
<%
Dim username, userpass
username = Request.form("username")
userpass = Request.form("userpass")
sql="select * from [user] where username='"&username&"'AND userpass ='"&userpass&"'"
Set Rs1=Conn.Execute(SQL)
if rs1.eof then Response.Redirect "BBS/login.asp"
Else
return false
End If
%>