管理退出出现问题
这是判断是否登陆:manage.asp<%if isempty(session("username")) then
response.redirect("login.asp")
response.end()
end if
%>
这是退出登陆
<%
session("username")=""
response.write("<script>alert('您已经成功的退出了');window.location='rword.asp'</script>")
%>
当我第一次不登陆进manage.asp的时候会转到login.asp
但当我登陆后,然后按退出登陆,在直接进manage.asp还是可以进。