I am developing an application using Asp.Net.My question is whether there is any solution to display a page only for the first time.i.e when the user logs in for the first time it should ask to change the password but when the user logs in after changing the password it should not display the changepassword page instead it should redirect to another page.I have used session variables to do this but after the session expires its again showing the change password page.Can anyone help me to solve this problem.
I am developing an application using Asp.Net.My question is whether there is any solution
Share
You should take a flag parameter in database as per user and set the flag on first login. If it is set then don’t display the page.