2016-02-24 107 views
-3

這是我的場景.. 我想處理代碼403(未經授權的訪問)使用特定的視圖。所有其他使用其他視圖的異常。達到此目的的最佳方法是什麼?最佳實踐錯誤處理ASP.Net MVC

+1

參考[this](http://www.codeproject.com/Articles/850062/Exception-handling-in-ASP-NET-MVC-methods-explaine) –

回答

0

使用try catch方法。

try 
    { 
     //Perform some action here 
    } 

    catch (Exception e) 
    { 
     Console.WriteLine("{0} First exception caught.", e); 
    } 

這是捕捉異常最簡單的方法。