CheckName.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:1k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_Inc/Function.asp" -->
  5. <!--#include file="Cls_user.asp" -->
  6. <link href="../images/skin/Css_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>/<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  7. <%
  8. Dim Conn,User_Conn
  9. MF_Default_Conn
  10. MF_User_Conn
  11. Dim ReturnValue,Username
  12. Username=Replace(replace(trim(Request("Username")),"'","''"),Chr(39),"")
  13. If len(Username)<3 then 
  14. Response.Write("用户名不能少于3位")
  15. Response.end
  16. End if
  17. If Username="" then 
  18. Response.Write("请填写用户名")
  19. Response.end
  20. End if
  21. dim Fs_User
  22. Set Fs_User = New Cls_User
  23. ReturnValue = Fs_User.checkName(Username)
  24. if ReturnValue then
  25. Response.Write(""& Username &" 此用户可以注册")
  26. Response.end
  27. Else
  28. Response.Write(""& Username &" 已经被注册")
  29. Response.end
  30. End if
  31. set Fs_User=nothing
  32. %>