c# - IIS 6 : CustomError Redirecting Values to avoid? -


i'm trying catch different httperror check causing trouble in .net application.

actually, here customerror contains on application :

 <customerrors mode="remoteonly" defaultredirect="~/error.htm">     <error statuscode="400" redirect="~/errorpage400.htm" />     <error statuscode="401" redirect="~/errorpage401.htm" />     <error statuscode="403" redirect="~/errorpage403.htm" />     <error statuscode="404" redirect="~/errorpage404.htm" />     <error statuscode="408" redirect="~/errorpage408.htm" />     <error statuscode="500" redirect="~/errorpage500.htm" />     <error statuscode="503" redirect="~/errorpage503.htm" />   </customerrors> 

the thing got redirected on page : https://support.microsoft.com/en-us/kb/318380/fr

is kind of default redirection?

this causing trouble application because page embedded in "uncloseable" window. on error pages, got button allows user close page since i'm not redirected on 1 of pages, can't click on it.

if check page,i can see there no 408 error code iis 5 or 6. why it's causing trouble? guess i'd know if knows exact reason


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -