How to get user email address from ASP.NET MVC Default Mempership Model?

后端 未结 4 1676
被撕碎了的回忆
被撕碎了的回忆 2021-02-13 18:45

i can get the user name as : User.Identity.Name. How can I user\'s email address because it must be stored (there is a textbox for it in the registration form)?

4条回答
  •  耶瑟儿~
    2021-02-13 19:19

    or if the information is coming from outside the page you can do like this.

     string userName = Request.QueryString["username"];
    
         TextBoxUserID.Text = Membership.GetUser(userName).Email;
    

提交回复
热议问题