vote up 1 vote down star

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

flag

4 Answers

vote up 1 vote down

Just implemented this in about an hour, no need to modify your base page. Heres what you have to do:

1) Respond to the LoggingIn event of the membership control
2) Find the user in the membership database and get LastPasswordChangedDate
3) Using a TimeSpan, compare this with the current date and decide if the password was last changed more than the requisite number of days ago. I get this value from web.config
4) If expired, redirect to the ChangePassword screen

link|flag
vote up 0 vote down

Thanks for your answers.I have now a base class from which I am deriving every Application Aspx page. I am now handling all the common tasks in the base class.

Thanks, Jai

link|flag
vote up 2 vote down

You could add an event handler for the HttpApplication.PostAuthenticateRequest event in global.asax and handle the redirection there.

link|flag
1  
That's what I'd do, combined with using the LastPasswordChangedDate property of the Membership Provider to determine when it expires. – technophile Dec 8 '08 at 14:45
vote up 0 vote down

Is this what you need?

link|flag
Urg that's a terrible solution i'm sorry – cbp Feb 10 at 5:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.