VS2010(MVC 4)のRazorを使用してC#プロジェクトを行っています。 コントローラからビューにエラーメッセージを返し、それをユーザーに表示する必要があります。私が試みた何 は次のとおりです。コントローラからのMVC 4リターンエラーメッセージ - 表示で表示
CONTROLLER:
[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
の代わりに 'return View(model)'を試してください。 – Ramesh