In a old site, I was changing the way that CustomErrors works by adding redirectMode="ResponseRewrite" (new in 3.5 SP1)
The thing is that it shows me the generic error page (the one that you get when you don't set customErrors
<customErrors mode="RemoteOnly" defaultRedirect="Error.aspx" redirectMode="ResponseRewrite">
<error statusCode="404" redirect="404.aspx" />
</customErrors>
If I remove then redirectMode="ResponseRewrite"
part, it works fine.
I'm sure 3.5 SP1 is installed in the server, because I use the setting in other sites hosted in the same server.
Any idea?