你能告诉我如何在 ASP.NET Web 窗体中发出通知,比如在 ASP.NET MVC 中,我们有 TempData,比如:
[HttpPost]
public ActionResult DoSomething(Customer c) {
TempData["custdetails"] = "Thx for message";
return RedirectToAction("Index");
}
<div>
@if (TempData["custdetails"] != null) {
<p>@TempData["custdetails"]</p>
}
</div>