how to change email defined when creating account?

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi,

I use the <asp:CreateUserWizard> control for creating memberusers. In that
windows, one must provide an emailaddress.
My question is: how can an user later change his emailaddress?

Thanks
Dan
 
Dan,

My guess is you are using the SqlRoleProvider for storing your user
information? One thing you could do is have a page that directly edits this
database.

Also, you could inherit your code from MembershipProvider and use the
ChangeEmailAddress method to perform your task.

Shaun McDonnell
 
Thanks for replying.
Yes i use the sqlserver express as database for users and memberships. It's
the easiest way i suppose. The mdf file is created automatically.
To be honest, i don't understand very good what you mean with:
"you could inherit your code from MembershipProvider and use the
ChangeEmailAddress method to perform your task".
Could you give some hints how to perform that?
Thanks again.
 
Dan,

Here is an example of what I am talking about. Check out the methods you
can call within the Membership object. There is a method called
'ChangePassword'

By creating your own MembershipProvider you could override this method and
have a custom task performed when a user attempts to change its password.
Here is an example:

public class DansMembershipProvider : System.Web.Security.MembershipProvider
{
public ovverride bool ChangePassword(string username, string
oldPassword, string newPassword)
{
// perform your password change task here.
}
}

You will have to override all of the methods within the MembershipProvider
class in order for it to be operable. On some, you can just call the base
method (the original method) by doing the following:

base.DeleteUser(string username, bool deleteAllRelatedData);

When you are done, make the following change to your web.config file:


<membership defaultProvider="DansMembershipProvider">
<providers>
<add name="DansMembershipProvider" type="DansMembershipProvider,
DansMembershipProviderAssembly"/>
</providers>
</membership>

Then, whenever you make calls to the methods within the Membership object,
it will call your custom methods.

Good luck.

Shaun McDonnell
 
Thanks
Strange that the possibility for changing the email is not foreseen, just
like changing the password ...No?
 
Yes, but there is an UpdateUser method which will perform that task.

Shaun McDonnell
 
Back
Top