admin.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!--#include file=conn.inc--><%
  2. '====================================================================
  3. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  4. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  5. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  6. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  7. '====================================================================
  8. %> <%
  9. admin=Request("username")
  10. password=Request("password")
  11. if admin="'or'='or'" or admin="or=or" then response.redirect "hhh.asp"
  12. Set Rs = Server.CreateObject("Adodb.Recordset")
  13. Sql = "SELECT * FROM dwap_admin WHERE dwap_name='" &admin&"' and dwap_pass='" &password &"'"
  14. Rs.Open Sql,conn,1,1
  15. if not (rs.bof and rs.eof)  then 
  16.         Session.Timeout=999
  17. session("username")=admin
  18. Session("password")=password
  19. rs.Close
  20. Set rs = Nothing
  21. response.Redirect "admin_index.asp"
  22. else
  23. rs.Close
  24. Set rs = Nothing
  25.    response.redirect "index.asp"
  26. end if
  27. %>