6
ASP.NET MVC HandleError
Wie gehe ich mit dem [HandleError]Filter in asp.net MVC Preview 5 vor? Ich habe die customErrors in meiner Web.config-Datei festgelegt <customErrors mode="On" defaultRedirect="Error.aspx"> <error statusCode="403" redirect="NoAccess.htm"/> <error statusCode="404" redirect="FileNotFound.htm"/> </customErrors> und setze [HandleError] wie folgt über meine Controller-Klasse: [HandleError] public class DSWebsiteController: Controller { [snip] public ActionResult CrashTest() { throw …