我们在 asp.net MVC 4(剃刀视图)中有一个页面。当我们在浏览器中运行页面时,它显示的是 html 代码而不是设计。动作方法如下所示,
[HttpPost]
public ActionResult ChangePassword(ChangePasswordUI changePasswordUI)
{
//Validate the current password
//add error to the model
ModelState.AddModelError("CurrentPassword", "Invalid current password");
return View(changePasswordUI);
}
输出是这样的
萤火虫中的响应如下所示