I am using ASP.NET membership for the authentication of my web app. This worked great for me. I now have to implement password expiration.
If the password has expired th
You could add an event handler for the HttpApplication.PostAuthenticateRequest event in global.asax and handle the redirection there.