6
ASP.NET MVC Tanıtıcı Hatası
[HandleError]Asp.net MVC Preview 5'te filtreye nasıl gidebilirim ? CustomErrors'ı Web.config dosyamda ayarlıyorum <customErrors mode="On" defaultRedirect="Error.aspx"> <error statusCode="403" redirect="NoAccess.htm"/> <error statusCode="404" redirect="FileNotFound.htm"/> </customErrors> ve [HandleError] öğesini şu şekilde Denetleyici Sınıfımın üstüne koyun: [HandleError] public class DSWebsiteController: Controller { [snip] public ActionResult CrashTest() { throw new Exception("Oh Noes!"); } } Sonra denetleyicilerimin …