Important alert: (current site time 7/15/2013 10:03:24 PM EDT)
 

article

Email Validation

Email
Submitted on: 6/18/2009 9:29:08 AM
By: AciD Killa 
Level: Beginner
User Rating: By 2 Users
Compatibility: ASP (Active Server Pages)
Views: 7822
 
     To validate email addresses :)

 
 
Terms of Agreement:   
By using this article, you agree to the following terms...   
  1. You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
				Private Function erGyldigEpost(ByVal strEpost As String) As Boolean
Dim bForbiAlfaKrøll As Boolean = False
Dim bForbiDomene As Boolean = False
Dim strDomain As String = ""
Dim iUserString As Integer = 0
Dim iHostString As Integer = 0
For Each c As Char In strEpost
If bForbiAlfaKrøll = False Then
If c = "@" Then
bForbiAlfaKrøll = True
Else
If Char.IsLetterOrDigit(c) = False And c <> "." Then
Return False' fant symbol eller noe lignende før alfakrøll
Exit Function
Else
iUserString = iUserString + 1
End If
End If
ElseIf bForbiAlfaKrøll = True And bForbiDomene = False Then
If c = "." Then
bForbiDomene = True
Else
If Char.IsLetterOrDigit(c) = False Then
Return False' fant symbol eller noe lignende etter alfakrøll
Exit Function
Else
iHostString = iHostString + 1
End If
End If
ElseIf bForbiDomene = True Then
If Char.IsLetter(c) = True Then
strDomain = strDomain & c
Else
Return False' fant symbol eller noe lignende i toppdomenet.
Exit Function
End If
End If
Next
If iUserString >= 2 And iHostString >= 2 And erGyldigDomene(strDomain) = True Then
Return True ' username er lengre enn 2 chars, hostname er lengre enn 2 chars og det er et gyldig toppdomene.
Else
Return False' for kort username/hostname eller ugyldig toppdomene.
End If
End Function
Private Function erGyldigDomene(ByVal strDomene As String) As Boolean
Dim wwwClient As New Net.WebClient
Dim strDomains As String = wwwClient.DownloadString("http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains")
Return CBool(InStr(strDomains, "." & strDomene) <> 0)
End Function


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this article (in the Beginner category)?
(The article with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

6/18/2009 9:52:53 PMsirad

good code
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular article, please click here instead.)
 

To post feedback, first please login.