* セッション - 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

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS