我在VS2010中使用Razor進行C#項目(MVC 4)。 我需要從控制器返回錯誤消息以查看並顯示給用戶。 什麼我試過是:MVC 4 - 從控制器返回錯誤消息 - 在視圖中顯示
控制器:
[HttpPost]
public ActionResult form_edit(FormModels model)
{
model.error_msg = model.update_content(model);
ModelState.AddModelError("error", "adfdghdghgdhgdhdgda");
ViewBag.error = TempData["error"];
return RedirectToAction("Form_edit", "Form");
}
VIEW:
@model mvc_cs.Models.FormModels
@using ctrlr = mvc_cs.Controllers.FormController
@using (Html.BeginForm("form_edit", "Form", FormMethod.Post))
{
<table>
<tr>
<td>
@Html.ValidationSummary("error")
@Html.ValidationMessage("error")
</td>
</tr>
<tr>
<th>
@Html.DisplayNameFor(model => model.content_name)
@Html.DropDownListFor(x => x.selectedvalue, new SelectList(Model.Countries, Model.dd_value, Model.dd_text), "-- Select Product--")
</th>
</tr>
</table>
<table>
<tr>
<td>
<input type="submit" value="Submit" />
</td>
</tr>
</table>
}
請幫我實現這一目標。
你確定要返回重定向並不能查看? – Grundy
嘗試'返回查看(模型)'而不是'返回RedirectToAction(「Form_edit」,「Form」);' – Grundy
Ya,我需要返回RedirectToAction(「Form_edit」,「Form」); – Ramesh