cookies.asp
资源名称:1.rar [点击查看]
上传用户:ziqing_518
上传日期:2022-08-09
资源大小:446k
文件大小:1k
源码类别:

多媒体编程

开发平台:

ASP/ASPX

  1. <%
  2. if request.cookies("nicedown")("admin")="" then
  3. Response.Redirect "index.asp"
  4. else
  5. strCookies=request.cookies("nicedown")("admin")
  6. strPws=md5(request.cookies("nicedown")("pws"))
  7. Set rs = Server.CreateObject("ADODB.Recordset")
  8. sql="SELECT admin.admin,admin.pws,admin.qx FROM admin where admin='"&strCookies&"'"
  9. rs.OPEN sql, Conn,1,1
  10. if rs.eof then
  11. Response.Redirect "index.asp"
  12. else
  13. strRscpws=rs("pws")
  14. strQx=rs("qx")
  15. if strPws<>strRscpws then
  16. Response.Redirect "index.asp"
  17. end if
  18. set rs4=conn.execute("select * from config where id="&int(strQx))
  19. if rs4("boolAdmin")=False then
  20. Response.Redirect "index.asp"
  21. end if
  22. conn.execute("update admin set lastIP='"& Request.servervariables("remote_addr") &"',lastTime='"& now() &"' where admin='"& strCookies &"'")
  23. %>