I am using ASP.NET membership for the authentication of my web app. This worked great for me. I now have to now implement password expiration.
If the password has expired the user should be redirected to changepassword screen and should not be allowed access any other part of the application without changing the password.
There are many aspx pages. One solution could be to Redirect to Changepassword screen oninit of every aspx if the password has expired. Is there any other solutions or recommendations.
Thanks, Jai