logon.asp
上传用户:llrg7406
上传日期:2007-03-02
资源大小:654k
文件大小:1k
源码类别:

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <%
  3. name = Request.Form("name")
  4. passwd = Request.Form("passwd")
  5. sql = "select name,passwd,type from usertype where name ='" & name & "'" 
  6. set conn = server.CreateObject("adodb.connection")
  7. conn.Open application("dsn")
  8. set rs = server.CreateObject("adodb.recordset")
  9. rs.Open sql,conn
  10. if rs.EOF then
  11. response.write "错误的用户名或密码!"
  12. rs.Close
  13. set rs = nothing
  14. conn.Close
  15. set conn = nothing
  16. Response.End
  17. end if
  18. if not (rs("passwd") = passwd) then
  19. response.write "错误的用户名或密码!"
  20. rs.Close
  21. set rs = nothing
  22. conn.Close
  23. set conn = nothing
  24. Response.End
  25. end if
  26. session("username") = rs("name")
  27. session("usertype") = rs("type")
  28. rs.Close
  29. set rs = nothing
  30. sql = "update visit set visitnum = visitnum +1"
  31. conn.Execute sql
  32. conn.Close
  33. set conn = nothing
  34. Response.Redirect "frame.asp"
  35. %>