0
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
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??