means that for complete registration user must click on the link
sir plz help me............
sir plz send me the process with code
thanx....
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Jul 1, 2013, 1:10 PM
http://nagireddyg.blogspot.in/2012/03/activation-email-for-user-registration.html
http://www.c-sharpcorner.com/uploadfile/abhikumarvatsa/registration-login-email-id-verification-scenario-in-C-Sharp/
http://www.dotnetspider.com/resources/44329-How-implement-user-registration-with-email-confirmation-using-ASP.NET.aspx
Pankaj PandeyPosted Jul 1, 2013, 9:34 AM
follow the following step
register a user
insert the data with two extra columns, one is status,by default it false, and another is activation code which is saved at time of insertion.
send mail link like,, www.yoursite.com/activationpage.aspx?code=activation code from database.
ob the activationpage.aspx you can use querystring to get the code.
string x=request.querystring["code"].Tostring();
match this x with database and if both matches then update status=true;
at the time of login test username,password,and also status.