c# asp.net 捕捉404错误转发到指定页面

在web.config里
<configuration>
    <system.web>
        <customErrors mode="On" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.aspx" />
            <error statusCode="404" redirect="FileNotFound.aspx" />
        </customErrors>
    </system.web>
</configuration>


黑色头发:http://heisetoufa.iteye.com/

你可能感兴趣的:(C++,c,.net,C#,asp.net)