Home All Groups Group Topic Archive Search About

how to change email defined when creating account?

Author
13 Feb 2007 7:08 PM
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

Author
13 Feb 2007 7:28 PM
Shaun C McDonnell
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


Show quoteHide quote
"Dan" <d@d.d> wrote in message news:uDL1CN6THHA.3500@TK2MSFTNGP05.phx.gbl...
> 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
>
Author
13 Feb 2007 8:09 PM
Dan
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.


Show quoteHide quote
"Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
news:CF9FA471-4DAD-4F5A-9869-44C7A486B3A1@microsoft.com...
> 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
>
>
> "Dan" <d@d.d> wrote in message
> news:uDL1CN6THHA.3500@TK2MSFTNGP05.phx.gbl...
>> 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
>>
Author
13 Feb 2007 8:18 PM
Shaun C McDonnell
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

Show quoteHide quote
"Dan" <d@d.d> wrote in message news:OAC#sr6THHA.4756@TK2MSFTNGP06.phx.gbl...
> 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.
>
>
> "Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
> news:CF9FA471-4DAD-4F5A-9869-44C7A486B3A1@microsoft.com...
>> 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
>>
>>
>> "Dan" <d@d.d> wrote in message
>> news:uDL1CN6THHA.3500@TK2MSFTNGP05.phx.gbl...
>>> 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
>>>
>
>
Author
13 Feb 2007 10:20 PM
Dan
Thanks
Strange that the possibility for changing the email is not foreseen, just
like changing the password ...No?



Show quoteHide quote
"Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
news:33C4308D-E160-4D7D-8B1B-B849135956C8@microsoft.com...
> 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
>
> "Dan" <d@d.d> wrote in message
> news:OAC#sr6THHA.4756@TK2MSFTNGP06.phx.gbl...
>> 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.
>>
>>
>> "Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
>> news:CF9FA471-4DAD-4F5A-9869-44C7A486B3A1@microsoft.com...
>>> 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
>>>
>>>
>>> "Dan" <d@d.d> wrote in message
>>> news:uDL1CN6THHA.3500@TK2MSFTNGP05.phx.gbl...
>>>> 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
>>>>
>>
>>
Author
14 Feb 2007 2:18 PM
Shaun C McDonnell
Yes, but there is an UpdateUser method which will perform that task.

Shaun McDonnell

Show quoteHide quote
"Dan" <d@d.d> wrote in message news:uNdVy07THHA.192@TK2MSFTNGP04.phx.gbl...
> Thanks
> Strange that the possibility for changing the email is not foreseen, just
> like changing the password ...No?
>
>
>
> "Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
> news:33C4308D-E160-4D7D-8B1B-B849135956C8@microsoft.com...
>> 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
>>
>> "Dan" <d@d.d> wrote in message
>> news:OAC#sr6THHA.4756@TK2MSFTNGP06.phx.gbl...
>>> 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.
>>>
>>>
>>> "Shaun C McDonnell" <sm-nospammmmmers@eisoft.com> schreef in bericht
>>> news:CF9FA471-4DAD-4F5A-9869-44C7A486B3A1@microsoft.com...
>>>> 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
>>>>
>>>>
>>>> "Dan" <d@d.d> wrote in message
>>>> news:uDL1CN6THHA.3500@TK2MSFTNGP05.phx.gbl...
>>>>> 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
>>>>>
>>>
>>>
>
>