Click here to Skip to main content
15,886,795 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am adding password recovery option in my project, when the candidate clicks on forget password link i am sending a link to his personal mail. when the candidate clicks on that link i want to reset the password for this i need his emailid now my question is how to get his emailid to reset the password
Posted

Ok, one of the ways:
1. If user selects for 'forgot password', ask him for the registered email id
2. send an email to that email id with a link of setting up new password with encrypted querystring to make sure who it is sent to
3. if it was real user and he forgot password, he will get your email in his registered email id inbox
4. Once he visits the link, you know the person who is trying to set password, do it.
5. Once the link is used, destroy the querystring related such that the same link cannot be used again.

Try out!
 
Share this answer
 
pass parameter in link as id .../Default.aspx?id='username'
and on page load of Default retrieve that id using Request.QueryString["id"];...i think it will work...also check following link

http://imar.spaanjaars.com/569/requiring-users-to-confirm-their-e-mail-address-after-they-create-an-account[^]
 
Share this answer
 

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