04-21-04 08:34 AM
Hello Jim,
This is a knwon issue, matching the following two points can resolve
it:
1) In Web.config, just leave customError disabled to allow IIS handle
the 403.4 error code.
<customErrors mode="Off" />
2) Yes, as the error message indicated, the ASP.net application's
AppPool must be the same one as which the redirection page located.
For example:
ASP.net app in /WebApplication1
redirect.asp in root directory /
403.4 is pointed to /redirect.asp
The site root(home) directory's AppPool is DefaultAppPool.
Set WebApplication1 to also use DefaultAppPool and the error will no
longer occur.
Another work around is place a copy of redirect.asp into
/WebApplication1 and map /WebApplication1's 403.4 to use this local
page.
Best regards,
WenJun Zhang
Microsoft Online Support
This posting is provided "AS IS" with no warranties, and confers no
rights.
Get Secure! - www.microsoft.com/security
[ Post a follow-up to this message ]
|