咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
在web.config里面加入customErrors节
<configuration> <system.web> <customErrors defaultRedirect="GenericError.htm" mode="On"> <error statusCode="500" redirect="InternalError.htm"/> </customErrors> </system.web> </configuration>
其中mode要设置为 On ,500只是一个例子,还可以添加其他http状态码,deaultRedirect为默认的跳转网页,可以要,也可以不要