?? functionuservip.asp
字號:
<%
function Checkin(s)
s=trim(s)
s=replace(s," ","&nbsp;")
s=replace(s,"'","&#39;")
s=replace(s,"""","&quot;")
s=replace(s,"<","&lt;")
s=replace(s,">","&gt;")
Checkin=s
end function
function IsValidEmail(email)
IsValidEmail = true
names = Split(email, "@")
if UBound(names) <> 1 then
IsValidEmail = false
exit function
end if
for each name in names
if Len(name) <= 0 then
IsValidEmail = false
exit function
end if
for i = 1 to Len(name)
c = Lcase(Mid(name, i, 1))
if InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric(c) then
IsValidEmail = false
exit function
end if
next
if Left(name, 1) = "." or Right(name, 1) = "." then
IsValidEmail = false
exit function
end if
next
if InStr(names(1), ".") <= 0 then
IsValidEmail = false
exit function
end if
i = Len(names(1)) - InStrRev(names(1), ".")
if i <> 2 and i <> 3 then
IsValidEmail = false
exit function
end if
if InStr(email, "..") > 0 then
IsValidEmail = false
end if
end function
sub error()
%>
<html><head>
<title>錯誤提示-音樂酒吧VIP系統(tǒng)</title>
<link rel=stylesheet href=../images/css.css>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body leftmargin="0" topmargin="30">
<div align="center">
<table width="100%" border="0" cellpadding="0" cellspacing="0" bordercolordark="#FFFFFF" bgcolor="#666666">
<tr>
<td width="100%" bgcolor="#FFFFFF" align="center" nowrap><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><font color="#FF0000">...::: 出錯啦??!:::...</font><br><br> <%=errmsg%>
<br><br><a href="reg.asp" target="_blank"><font color="#0000FF">查詢?nèi)绾潍@取VIP資格</font></a>
<p><b><a href="javascript:top.window.close();">...:::
點(diǎn) 此 關(guān) 閉 窗 口 :::...</a></b> </td>
</tr>
</table></td>
</tr>
</table>
</div>
</body>
</html>
<%
end sub
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -