503 Service Unavailable Custom?

  • Thread starter Thread starter David Lozzi
  • Start date Start date
D

David Lozzi

Howdy,

I'd like to setup an HTML for the error Service Unavailable however I don't
see 503 in the Custom Error list in IIS 6 (Win2003 stand sp1). How do I set
this up, if possible?

Thanks,
David Lozzi
 
The following errors are not customizable: 400, 403.9, 411, 414, 500,
500.11, 500.14, 500.15, 501, 503, and 505.

you can test if web.config

<customErrors mode="On" defaultRedirect="CustomError.aspx">
<error statusCode="503" redirect="Error503.aspx" />
</customErrors>

helps to manage that error, however I think it will not work
 
Back
Top