我有模板MVC 4更改密码视图返回文本而不是html:
密码查看:
@model Heelp.ViewModels.LocalPasswordViewModel
<p>@ViewBag.StatusMessage</p>
@if(Model.HasLocalPassword)
{
@Html.Partial(MVC.Account.Views._ChangePasswordPartial)
}
else
{
@Html.Partial(MVC.Account.Views._SetPasswordPartial)
}
ChangePartial View:
@model Heelp.ViewModels.LocalPasswordViewModel
@if (!String.IsNullOrEmpty(Model.Result))
{
<div class="result">
@Model.Result
</div>
}
@if (!Model.ChangePasswordSucceeded)
{
using (Html.BeginForm(MVC.Account.Password()))
{
@Html.AntiForgeryToken()
@Html.LabelFor(m => m.OldPassword)
@Html.PasswordFor(m => m.OldPassword)
@Html.ValidationMessageFor(m => m.OldPassword)
<br />
@Html.LabelFor(m => m.NewPassword)
@Html.PasswordFor(m => m.NewPassword)
@Html.ValidationMessageFor(m => m.NewPassword)
<br />
@Html.LabelFor(m => m.ConfirmPassword)
@Html.PasswordFor(m => m.ConfirmPassword)
@Html.ValidationMessageFor(m => m.ConfirmPassword)
<br />
<input type="submit" value="@HeelpResources.ChangePasswordPartialSubmitButtonLabel" />
}
}
最后是控制器:
[HttpPost]
[ValidateAntiForgeryToken]
public virtual ActionResult Password(LocalPasswordViewModel model)
{
// Has this information is lost in the roundtrip between the Controller and the Action, we need to get this information again
model.HasLocalPassword = OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));
if (model.HasLocalPassword)
{
if (ModelState.IsValid)
{
// It's a local account so update the new password
model.ChangePasswordSucceeded = WebSecurity.ChangePassword(User.Identity.Name, model.OldPassword, model.NewPassword);
}
// Send back to the View the results of the operation
model.Result = model.ChangePasswordSucceeded ? HeelpResources.AccountManagePasswordChangeSucessMsg : HeelpResources.AccountManagePasswordChangeErrorMsg;
return View(model);
}
else
{
try
{
// It's not a local account so create the account based on the external information and the password
WebSecurity.CreateAccount(User.Identity.Name, model.NewPassword);
model.ChangePasswordSucceeded = true;
}
catch (Exception)
{
model.ChangePasswordSucceeded = false;
}
// User does not have a local password so remove any validation errors caused by a missing OldPassword field
ModelState state = ModelState["OldPassword"];
if (state != null)
{
state.Errors.Clear();
}
// Send back to the View the results of the operation
model.Result = model.ChangePasswordSucceeded ? HeelpResources.AccountManagePasswordSetSucessMsg : HeelpResources.AccountManagePasswordSetErrorMsg;
}
return View(model);
}
当我提交密码更改表格时,我会以文本格式获取页面:
< !DOCTYPE html >
< html xmlns="http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
< title>izigo | tudo fica mais fácil</title>
< meta name="viewport" content="width=960, user-scalable=yes"/>
// REST OF THE TEXT PAGE
任何想法为什么会发生这种情况?
感谢。
答案 0 :(得分:2)
Html.Partial返回一个HTML编码的字符串,它可以解释您所看到的行为。
如果您想渲染视图,那么可以尝试使用Html.RenderPartial。
另外,c.f。此Stack Overflow question