function.asp

来自「大概说明: 一:登陆后台前请先smszzun_admin,找到IP_rep」· ASP 代码 · 共 81 行

ASP
81
字号
<%
function Checkin(s) 
s=trim(s) 
s=replace(s," ","&amp;nbsp;") 
s=replace(s,"'","&amp;#39;") 
s=replace(s,"""","&amp;quot;") 
s=replace(s,"&lt;","&amp;lt;") 
s=replace(s,"&gt;","&amp;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>错误提示</title>
<LINK href=../as001_img/menus.css rel=stylesheet type=text/css>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body bgcolor=#7B8ABD leftmargin="0" topmargin="30">
<div align="center">
          
  <table width="60%" border="0" cellpadding="15" cellspacing="4"  bordercolor="#FFFFFF" bordercolordark="#FFFFFF" bgcolor="#FFFFFF">
    <tr>
              
      <td width="100%" bgcolor="#BDCF25" align="center" nowrap> <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="center"><img src="images_two/err.gif" width="120" height="120"></td>
          </tr>
          <tr>
            <td align="center"> Error!&nbsp;<%=errmsg%>&nbsp; 
              <p><b><a href="javascript:history.go(-1)">...::: 点 此 返 回 
                :::...</a></b> </td>
          </tr>
        </table></td>
            </tr>
          </table>
</div>
</body>                    
</html> 

<%
end sub
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?