S
shapper
Hello,
How can I get the currently log on user and change its email?
Thanks,
Miguel
How can I get the currently log on user and change its email?
Thanks,
Miguel
How can I get the currently log on user and change its email?
Hello,
How can I get the currently log on user and change its email?
Thanks,
Miguel
hi...
Miguel
if (Page.User.Identity.IsAuthenticated)
{
MembershipUser user =
Membership.GetUser(Page.User.Identity.Name);
user.Email = "(e-mail address removed)";
}
this is the code to get a logged in user
Thanks
Masudurhttp://www.kaz.com.bdhttp://munnacs.110mb.com
hi...
Miguel
if (Page.User.Identity.IsAuthenticated)
{
MembershipUser user =
Membership.GetUser(Page.User.Identity.Name);
user.Email = "(e-mail address removed)";
}
this is the code to get a logged in user
Thanks
Masudurhttp://www.kaz.com.bdhttp://munnacs.110mb.com
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.