* セッション - TempDataによる一時データ [#feba7277]
TempDataを使う。
** サンプル [#a359916f]
*** Controller [#i6528189]
publc class ItemController
{
[HttpPost]
public ActionResult Delete(int item_id)
{
_itemService.Delete(item_id);
TempData["Alert"] = "削除しました。";
return RedirectToAction("Index", "Item");
}
public ActionResult Index()
{
ViewBag.Alert = TempData["Alert"];
return View();
}
}
*** View [#l2558555]
@if (!String.IsNullOrEmpty(ViewBag.Alert)) {
<div class="alert">@ViewBag.Alert</div>
}
** 参考 [#oe478b70]
http://stackoverflow.com/search?q=asp.net+mvc+TempData