想象一下,我有一个注册某人的控制器,如果成功应该在另一个控制器视图上显示一条消息。
[HttpPost]
public ActionResult Register(RegisterModel model)
{
string msg = db.Register(model)
// Assuming msg contains "You have been succesfully registered"
// How do I display that on the Dashboard view??
return RedirectToAction("Index", "Dashboard");
}
将消息或一系列消息传递给仪表板控制器的最佳方式是什么?
如果我可以传递具有自己属性的对象列表(例如 obj.Status && obj.Message),那就更好了