«handleerror» 태그된 질문

6
ASP.NET MVC HandleError
[HandleError]asp.net MVC Preview 5 의 필터는 어떻게하나요? 내 Web.config 파일에 customErrors를 설정했습니다. <customErrors mode="On" defaultRedirect="Error.aspx"> <error statusCode="403" redirect="NoAccess.htm"/> <error statusCode="404" redirect="FileNotFound.htm"/> </customErrors> 다음과 같이 내 컨트롤러 클래스 위에 [HandleError]를 넣습니다. [HandleError] public class DSWebsiteController: Controller { [snip] public ActionResult CrashTest() { throw new Exception("Oh Noes!"); } } 그런 다음 컨트롤러가이 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.