ASP.NET身份编辑是否记录在用户的数据中?

时间:2016-04-22 18:16:51

标签: c# asp.net asp.net-mvc razor asp.net-identity

我修改了Views / Manage / Index.cshtml以显示用户的电子邮件。我也修改了IndexViewModel,因此它识别出" Email"字符串,然后创建另一个.cshtml页面类似于更改默认情况下的电话号码1。新页面名为ChangeEmail.cshtml

@using (Html.BeginForm("ChangeEmail", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
    @Html.AntiForgeryToken()
    <h4>Add an email</h4>
    <hr />
    @Html.ValidationSummary("", new { @class = "text-danger" })
    <div class="form-group">
        @Html.LabelFor(model => model.Email, new { @class = "col-md-2 control-label" })
        <div class="col-md-10">
            @Html.TextBoxFor(model => model.Email, new { @class = "form-control" })

        </div>
    </div>
    <div class="form-group">
        <div class="col-md-offset-2 col-md-10">
            <input type="submit" class="btn btn-default" value="Submit" />
        </div>
    </div>
}

从我所看到的情况来看,更改密码是通过名为&#34; ChangePasswordAsync&#34;在UserManager.cs中 有没有办法在不进行新任务的情况下更改电子邮件?

编辑:从控制器(索引)添加更多:

    public async Task<ActionResult> Index(ManageMessageId? message)
            {
                ViewBag.StatusMessage =
                    message == ManageMessageId.ChangePasswordSuccess ? "Your password has been changed."
                    : message == ManageMessageId.SetPasswordSuccess ? "Your password has been set."
                    : message == ManageMessageId.SetTwoFactorSuccess ? "Your two-factor authentication provider has been set."
                    : message == ManageMessageId.Error ? "An error has occurred."
                    : message == ManageMessageId.AddPhoneSuccess ? "Your phone number was added."
                    : message == ManageMessageId.RemovePhoneSuccess ? "Your phone number was removed."
                    : message == ManageMessageId.EmailChangedSuccess ? "Your email has been changed"
                    : "";

                var userId = User.Identity.GetUserId();
                var userEmail = User.Identity.Name;
                var user = UserManager.FindById(userId);



                var model = new IndexViewModel
                {
                    HasPassword = HasPassword(),
                    PhoneNumber = await UserManager.GetPhoneNumberAsync(userId),
                    TwoFactor = await UserManager.GetTwoFactorEnabledAsync(userId),
                    Logins = await UserManager.GetLoginsAsync(userId),
                    BrowserRemembered = await AuthenticationManager.TwoFactorBrowserRememberedAsync(userId),
                    Email = user.Email,
                    City = user.City,
                    Region = user.Region


                };
                user.Email = "topkek@ucn.dk";
                UserManager.UpdateAsync(user);

                return View(model);
            }

 [HttpPost]
        [ValidateAntiForgeryToken]
        public async Task<ActionResult> ChangeEmail(ChangeEmailViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return View(model);
            }



            return RedirectToAction("Index", new { Message = ManageMessageId.EmailChangedSuccess });
        }

1 个答案:

答案 0 :(得分:3)

ChangeEmailViewModel获取用户的电子邮件地址,然后使用userManager.UpdateAsync(user)

更新用户的详细信息

修改

[HttpPost]
        [ValidateAntiForgeryToken]
        public async Task<ActionResult> ChangeEmail(ChangeEmailViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return View(model);
            }
             //Get the user's Id
            var userId = User.Identity.GetUserId(); 

            //get the user (you can modify the variables to fit yours) 
           var user = UserManager.FindByIdAsync(userId);

          //this is how to change the Email
          user.Result.Email= model.Email// **EDIT**;

         userManager.UpdateAync(user.Result);

            return RedirectToAction("Index", new { Message = ManageMessageId.EmailChangedSuccess });
        }