通常のASP.NETアプリケーションでは、次のようなのcustomErrorsセクションがある可能性があります:プログラムで
<customErrors mode="On">
<error statusCode="404" redirect="Nice-FileNotFound-Page.aspx"/>
</customErrors>
は、それがのApplication_Startで、プログラム404エラーを設定することは可能ですか?以下のような何か:
// Figure out which page should be used... using some logic somewhere in the application
// (obviously) Pseudo-code: Application.ErrorCode.404.Page = Page-Found-Above