Is it a valid email address?
Basic email checker
<% 
Wemail="a@aa.us"
test1=instr(Wemail, "@")                   ' value must be >1
test2=instr(Wemail, ".")                      ' value must be >4
test3=len(Wemail)                              ' value must be >6
test4=InStr (test1,Wemail,".",1)        ' value must be >test1+2
 

if test1<2 OR test2<5 OR test3<7 OR test4<test1+3 then
response.write(Wemail & " is not a valid email address")
else
response.write(Wemail & " is a valid email")
end if 
%>

This script will allow to check emails from a form

isemail2.asp
<%
if request.form("email")="" then 
Sendform()
else
IsEmail(request.form("email"))
end if
Sendform()
%>

<% Sub Sendform() %>
<form method=post action="isemail.2">
Type email address<BR>
<input type=text size=20 name=email><br>
<input type=submit value="Is it a valid email">
<form>
<% end Sub %>

<% 
Sub IsEmail (Wemail)
test1=instr(Wemail, "@")                   ' value must be >1
test2=instr(Wemail, ".")                      ' value must be >4
test3=len(Wemail)                              ' value must be >6
test4=InStr (test1,Wemail,".",1)        ' value must be >test1+2
 

if test1<2 OR test2<5 OR test3<7 OR test4<test1+3 then
response.write(Wemail & " is not a valid email address")
else
response.write(Wemail & " is a valid email")
end if 
end Sub
%>










   



MSN Nick Name



More Resources...





Most Viewed Services:
  1. HTML Tutorial
  2. XHTML Tutorial
  3. CSS Tutorial
  4. Javascript Tutorial
  5. DHTML Tutorial
  6. VB Script
  7. TCP/IP Tutorial
  8. ADO Tutorial
  9. MYSQL Tutorial
  10. ASP Tutorial
  11. AJAX Tutorial
  12. CFML Tutorial
  13. PHP Tutorial
  14. WML Tutorial
  15. FLASH Tutorial
  16. XML Tutorial
  17. RSS Tutorial
  18. SQL Tutorial
  19. HTML Articles
  1. Javascript Articles
  2. PHP Articles
  3. SEO Articles
  4. Web Design Articles
  5. SEO Tips
  6. Web Design Tips
  7. Articles
  8. CSS
  9. CSS Tips
  10. HTML Tips
  11. JAVASCRIPT Tips
  12. MYSQL Tips
  13. PHP Tips
  14. Money
  15. Tutorials
  16. Web Hosting



  • Home
  • Web Directory
  • Top Directoriers
  • Webmaster Directories
  • Contact
  • © Copyright 2006-2010 All Rights Reserved By CodeDcode.Com : HTML : RSS : TEXT : XML