如何在asp.net MVC2.0中显示错误消息

时间:2010-09-08 07:55:28

标签: asp.net-mvc-2

在asp.net C#MVC 2.0中进行编码时,如何显示错误消息让我们说有尝试{} .. Catch {}或者如果有...那么如果我想显示错误消息,那么我该如何编码?

1 个答案:

答案 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"]

在您的网页中获取它