Click here to Skip to main content
15,899,124 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi

in my project when user registered his registration have to be authenticated after he clicks the link which we sent to his mail

How to proceed
help me if any one knows.
Posted

1 solution

This article seems to talk about one way to do this:

http://www.amergerzic.com/post/AccessEmailConfirmation.aspx[^]

It's fairly trivial to roll your own solution though:

1) User signs up
2) You create a unique token associated with the user
3) Email him a link with the unique token in the url querystring
4) The Url basically updates a flag in the database saying the user is now confirmed (or rather his email is confirmed)

Whenever the user signs in, this flag is checked first to make sure only users with confirmed emails can login successfully.
 
Share this answer
 
v2
Comments
fjdiewornncalwe 19-Jan-11 20:55pm    
Clear and concise. +5

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