asp检测邮箱的合法性

<%
dim email
email=request.form("email")
if IsValidEmail(email) then
  if request("action")="退订" then
    response.redirect "del_email.asp?email="&email
  else
    response.redirect "add_email.asp?email="&email
  end if
else
  'response.write "无效的电子邮件格式,请按“后退”按钮,重填一个有效的Email"
  response.write"<SCRIPT language=JavaScript>alert('无效的电子邮件格式,请重填一个有效的Email!');"
  response.write"javascript:history.go(-1)</SCRIPT>"
end if

function IsValidEmail(email)

 dim names, name, i, c

 'Check for valid syntax in an email address.

 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
%>

时间: 2024-10-10 18:06:08

asp检测邮箱的合法性的相关文章

asp检测email 的合法性程序

function IsValidEmail(email)  dim names, name, i, c  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    IsVal

asp 下用正则表达式检测邮箱格式的函数_应用技巧

'********************************************************* '函数:IsValidEmail[str] '参数:str,待处理的字符串 '作者:木木 '日期:2007/7/12 '描述:检测邮箱格式是否为xxxx@xxx.com或者xxxx@xxx.com.cn等格式 '示例:<%=IsValidEmail(ali@alixixi.com)%> '*********************************************

asp 下用正则表达式检测邮箱格式的函数

'********************************************************* '函数:IsValidEmail[str] '参数:str,待处理的字符串 '作者:木木 '日期:2007/7/12 '描述:检测邮箱格式是否为xxxx@xxx.com或者xxxx@xxx.com.cn等格式 '示例:<%=IsValidEmail(ali@alixixi.com)%> '*********************************************

怎样用ASP实现邮箱访问

 怎样用ASP实现邮箱访问? 您在访问网站时是否会在有些页面上见到这种功能---您在可以访问此网站的同时,还可以查看您免费邮箱中是否有新邮件.这个功能是不是让您觉得很心动.很神秘呢?下面,我就用ASP来举个例子让您知道是如何实现这一功能的.  首先你可以去一些提供免费邮件服务的站点,申请一个账号然后登录.在打开邮箱时,请您注意地址栏中的内容.现在以371为例,你会发现其内容通常是: http://www.371.net/prog/login?user=fighter&pass=mypasswor

asp 检测服务器所安装组件

asp 检测服务器所安装组件 ================================== 函数名:IsObjInstalled 作  用:检查组件是否已经安装 参  数:strClassString ----组件名 返回值:True  ----已经安装       False ----没有安装 ================================== Function IsObjInstalled(strClassString)  On Error Resume Next

手机软件检测邮箱如何做到

问题描述 手机软件检测邮箱如何做到 我自己第一次在手机上安装印象笔记,安装后自动检测出我使用的谷歌邮箱? 请问在技术上如何实现的呢? 有知道的大神吗 给解释一下 解决方案 http://blog.csdn.net/zoeice/article/details/9832319

php检测邮箱地址是否存在

在php中有这么一个函数checkdnsrr来验证dns是否可访问来检测邮箱地址是否存在 */  代码如下 复制代码 $email ="abc@111cn.net"; $check_email = checkdnsrr($email,"a"); if($check_email) { return true; } else { return false; } /* 关于checkdnsrr函数详细说明 bool checkdnsrr ( string $host [,

asp 检测域名是否注册代码

asp 检测域名是否注册代码 <% On Error Resume Next Server.ScriptTimeOut=9999999 Function getHTTPPage(Path)         t = GetBody(Path)   getHTTPPage=BytesToBstr(t,"GB2312") End function Function GetBody(url)         on error resume next         Set Retriev

asp email邮箱地址验证正则表达式

上篇文章我们用字符串查找的方法实现了asp email邮箱地址的验证,有可能比较喜欢正则表达式的朋友,这里也给出相应的代码.方法一 复制代码 代码如下: Public Function ChkMail(ByVal Email) Dim Rep,Pmail : ChkMail = True : Set Rep = New RegExp Rep.Pattern = "([.a-zA-Z0-9_-]){2,10}@([a-zA-Z0-9_-]){2,10}(.([a-zA-Z0-9]){2,}){1,