I recently moved to a new host that doesn't allow you to touch the IIS admin options. I was wondering if there is any way to do a proper redirect that will include ASP error messages to a page setup for 500;100 errors outside of using the admin panel.
I have the custom 500;100 error page from my old host that I created. Can I redirect or do a server.transfer and send errors to a custom page? Is there another way?
I know in ASP.NET I can easily modify the web.config, alas, the classic
.ASP pages aren't effected by the changes in my web.config file.
Right now the only option looks to be going though hundreds of pages of code and putting in 'On error' statements, which would be quite a pain.