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?

link|improve this question

5  
Stands to reason... I won't let you change a password till you prove who you are... – Oded Dec 18 '09 at 8:21
Agreed. How is this a bug? – Anon. Dec 18 '09 at 8:22
clarification: the user was redirected by clicking a link in the password retrieval mail. the user supplies his username and temp password. – sjlewis Dec 18 '09 at 8:25
@sjlewis: If the user supplies his username and temp password, is he then not authenticated? That's what the temp password is for, right? – Tor Haugen Dec 18 '09 at 8:39
He does not get authenticated even if he supplied the Username and Password in the Change Password page. It seems weird because anything I put in just gets cleared, like the page is just being refreshed. I tried placing breakpoints in the control's events but nothing is triggered. The validators work, though. – sjlewis Dec 18 '09 at 8:44
show 1 more comment
feedback

2 Answers

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...

link|improve this answer
Nothing is set for this page. It's accessible by all. – sjlewis Dec 18 '09 at 8:29
feedback
up vote 0 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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