可参考如下:
<%
username=request.form("username")
userpass=request.form("userpass")
session("username")=200912ab'这里的值可以自己设定
session("userpass")=123'这里的值可以自己设定
if not isempty(request("login")) then
if username<>"" or userpass<>"" then
if username=session("username") and userpass=session("userpass") then
response.write""
else
response.write""
end if
else
response.write""
end if
end if
%>