📄 checkemail.asp
字号:
<% Option Explicit %>
<!--#include file="../../FS_Inc/Const.asp" -->
<!--#include file="../../FS_InterFace/MF_Function.asp" -->
<!--#include file="../../FS_Inc/Function.asp" -->
<!--#include file="Cls_user.asp" -->
<link href="../images/skin/Css_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>/<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.css" rel="stylesheet" type="text/css">
<%
Dim Conn,User_Conn
MF_Default_Conn
MF_User_Conn
Dim ReturnValue,Email
Email=Replace(replace(trim(Request("Email")),"'","''"),Chr(39),"")
If Email="" then
Response.Write("请填写用户名")
Response.end
End if
If len(Email)<6 then
Response.Write("电子邮件请填写正确")
Response.end
End if
if Email<> "" then
if Instr(Email,"@")=0 or Instr(Email,".")=0then
Response.Write("电子邮件请填写正确")
Response.end
end if
end if
dim Fs_User
Set Fs_User = New Cls_User
ReturnValue = Fs_User.checkEmail(Email)
if ReturnValue then
Response.Write(""& Email &" 此邮件可以注册")
Response.end
Else
Response.Write(""& Email &" 邮件已经被注册")
Response.end
End if
set Fs_User=nothing
%>
<link href="../images/skin/Css_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>/<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.css" rel="stylesheet" type="text/css">
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -