0
同時在asp.net中編碼C#MVC 2.0,如何顯示錯誤消息讓說有嘗試{} .. Catch {}或If Else ... then if我想顯示錯誤消息,那麼我如何編碼?如何在asp.net中顯示錯誤消息MVC2.0
同時在asp.net中編碼C#MVC 2.0,如何顯示錯誤消息讓說有嘗試{} .. Catch {}或If Else ... then if我想顯示錯誤消息,那麼我如何編碼?如何在asp.net中顯示錯誤消息MVC2.0
在ViewData
就返回一個錯誤:
public ActionResult Index(int id)
{
try
{
// Do something that causes an error
}
catch (Exception ex)
{
ViewData["Error"] = ex.Message;
}
return View();
}
,並通過使用ViewData["Error"]
自己的網頁中得到它。