Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在mvc的页面中显示成功消息?
例如,当用户提交页面时,处理数据后,我需要显示一条消息,告知数据已成功提交。
您可以使用 viewbag 将消息从控制器传递到如下视图:-
public ActionResult Index() { ViewBag.Name = "data successfully submitted."; return View(); }
在视图中:
@ViewBag.Name @ViewData["Name"]