login.asp
上传用户:xhjd888
上传日期:2022-07-20
资源大小:203k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual Basic

  1. <%@ language="vbscript" %>
  2. <!--#include file="add/ocdb/ocdb.asp"-->
  3. <%
  4. name=Request("username")
  5. pass=Request("password")
  6. sql2="select * from userlist where username='" & name & "'"
  7. set rs2=server.CreateObject("adodb.recordset")
  8. rs2.open sql2,conn,1,3
  9. if rs2.eof then
  10. response.write"<script>alert('没有这个用户!');window.location='index.asp'</script>"
  11. %>
  12. <a href="index.asp">返回</a>
  13. <%response.end
  14. else
  15.   if pass=rs2("password") then
  16.  session("username")=name
  17.      response.redirect "main.asp"
  18.   Else
  19.   response.write"<script>alert('密码错误!');window.location='index.asp'</script>"
  20.   %>
  21.    <a href="index.asp">返回</a>
  22.    <%
  23.   end if
  24. end if
  25. %>