2
Answers

doubt(user account activation)

kiran kumar

kiran kumar

15y
2.4k
1

i have a doubt regarding email verification....after an user registers at the site an email goes to his inbox showing his userid,password and a link to activate his account....suppose if the user clicks the link 2nd time how the program detects his account has already been activated and one more thing when he logs into the site and if the account has not been activated how the program detects his account has not been activated
if anybody does have a sample code please post here or explain the concept
Answers (2)
0
Nilanka Dharmadasa

Nilanka Dharmadasa

NA 5.2k 0 15y
Hi Kiran,

I hope you save the username and password of the user in database. So, you can add another column called 'Activated' to the same table.

Then when you create a user you have the value 0 in that column.

Once the user click on the link, you can update it to 1.

So if the user clicks on it for the second time, you can check the value and as it is already 1, you know the user has clicked on it for the second time.


When he logs into the site, you can again check the value. If it is 0 you know the account is not activated.


If you find this helpful, please tick 'Do you like this answer' checkbox.

Accepted
0
kiran kumar

kiran kumar

NA 1.6k 242.1k 15y

ok, niki your answer is appreciated ok after clicking the link do i need to open up connection to my database???
  string userID = Request.QueryString["id"];

so after this statement basing on id value supplied in the query string do i need to open up connection to db and update the activated flag in my table???  
 is there any alternate method using membership api??
Next Recommended Forum