asp判断用户是否登陆
来源:网络 作者:佚名 点击:
次时间:2017-08-23 21:44
[摘要] 指引教程为您提供asp判断用户是否登陆等资源,欢迎您收藏本站,我们将为您提供最新的asp判断用户是否登陆资源
<script>ec(2);</script> dim username,password username=session("user") password=session("pwd") if reqeust("id")<>username then response.write "<script>alert('非法操作');window.location.href='index.asp';</script>" response.end end if set rs=conn.execute("select * from [user] where name='"&reqeust("id")&"' and pwd='"&password&"'") if rs.eof then response.redirect "login.asp" else ... end if rs.close asp判断用户是否登陆
|
------分隔线----------------------------