答案 0 :(得分:1)
只需在ViewData
中输入错误:
public ActionResult Index(int id)
{
try
{
// Do something that causes an error
}
catch (Exception ex)
{
ViewData["Error"] = ex.Message;
}
return View();
}
使用ViewData["Error"]
。