views:

89

answers:

2

Not sure what's misconfigured somewhere or whatever. An authenticated user can change his password, but for an unauthenticated user, clicking on the Change Password button does not do anything. No error is shown either.

Any ideas?

A: 

I agree with Oded... But incase you still want to let unauthorised user change password... Check whether the Password change page is within the secured section in you Web.config file... Probably you might have given a blanket authorisation for all your pages only for authorised user... check you Authorisation Tag.. If so you can change the authorisation setting only for the password change page using location tag in you web.config file...

The King
Nothing is set for this page. It's accessible by all.
sjlewis
A: 

A temporary fix is to redirect to the Login page with "returnUrl=ChangePassword.aspx". After getting logged in, user is redirected to ChangePassword.aspx and the change password control works.

sjlewis