Within an ASP.Net application I am working on, the process is as follows.
- The user logs in.
- If this is the first time the user has logged into the system ever, it authenticates the user then redirects to update the password
- If the user updates the password, they continue on without problems
- However, if the user cancels out of updating their password the user is redirected back to the login page.
Now I want to be able to unauthenticate the user at this point #4 if they deicde not to update their password. How would I go about doing that?