ASP.Net UserName to Email

后端 未结 7 746
北海茫月
北海茫月 2020-11-29 06:35

I am working with the new ASP.NET Identity (RTM) and I was wondering how would I go on about changing registering and login from being a UserName to an Email.

The id

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 07:04

    While working on a similar problem, I found the easiest solution is simply to label the Username input as "Email" and then manually set the Membership email during onCreating.

    protected void RegisterUser_CreatingUser(object sender, LoginCancelEventArgs e){
        RegisterUser.Email = RegisterUser.UserName;            
    }
    

提交回复
热议问题