Click here to Skip to main content
15,889,412 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi All
I am Developer site.
In Sign Up Section I Want Evaluate Email Or Gmail User Entered Is Valid and Exist.
SomeBody Have Sample For authenticate Web Service?(For Asp.Net)
Thanks So Much
Posted
Comments
[no name] 29-May-13 8:13am    
You can use a regular expression to validate the email address but to know if it exists, you have to actually send an email to that address.
Maciej Los 29-May-13 8:17am    
...or check if exists in OP database ;)
Seyed Ahmad Mirzaee 29-May-13 8:16am    
Thanks
For Example in This Site:SignUp From Google Or FaceBook And...
When User Click it then Redirect to www.account.google.com and ...
i Need This WebService
Thanks

How to Find or Validate an Email Address[^] can help you detect if your email id is valid on the client.

However, its just not possible to detect whether it is an active email id.
 
Share this answer
 
v2
You can use Regex method with regular expression "\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" to validate email format.
And for its existence you have to check it from database.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900