1

次のようなTempDataがあるASP.NET MVCのように、ASP.NET Webフォームで通知を行う方法を教えてください。

[HttpPost]
public ActionResult DoSomething(Customer c) {

   TempData["custdetails"] = "Thx for message";

   return RedirectToAction("Index");

}

<div>
 @if (TempData["custdetails"] != null) {

 <p>@TempData["custdetails"]</p>

 }
</div>
4

1 に答える 1