in admin mode, when searching and editing for users, it is possible to change the password of the users when using sqlmembershipprovider. - A checkbox appears - which when clicked enables the two password field boxes in the edit user view.
For some unknown reason the checkbox doesn't appear when trying to use the custom provider.
Judging from reflection of the code for the page, there is a check to determine if the provider has update capabilities which it has - i tried running the test manually and it returns true, but it seems that in the context of admin mode, it returns false (since the checkbox is hidden).
I've also added providercapabilities to my provider in application_start but it doesn't seem to have any effect.
Hi,
I've created a custom membership provider,
in admin mode, when searching and editing for users, it is possible to change the password of the users when using sqlmembershipprovider. - A checkbox appears - which when clicked enables the two password field boxes in the edit user view.
For some unknown reason the checkbox doesn't appear when trying to use the custom provider.
Judging from reflection of the code for the page, there is a check to determine if the provider has update capabilities which it has - i tried running the test manually and it returns true, but it seems that in the context of admin mode, it returns false (since the checkbox is hidden).
I've also added providercapabilities to my provider in application_start but it doesn't seem to have any effect.
What do I have to do to make the checkbox appear?