6
ASP.NET MVC HandleError
Jak przejść do [HandleError]filtru w asp.net MVC Preview 5? Ustawiłem customErrors w moim pliku Web.config <customErrors mode="On" defaultRedirect="Error.aspx"> <error statusCode="403" redirect="NoAccess.htm"/> <error statusCode="404" redirect="FileNotFound.htm"/> </customErrors> i umieść [HandleError] nad moją klasą kontrolera w ten sposób: [HandleError] public class DSWebsiteController: Controller { [snip] public ActionResult CrashTest() { throw new Exception("Oh Noes!"); …