I'm writing the beginning of a ASP.NET web application using Visual Web Developer 2010 Express targeting the 4.0 framework. I have configured some exception handling in the Global.asax.vb file under Application_Error which writes to a log file. This all
works fine in dev using the built in asp.net dev server.
I have published the application to my production server (IIS7.5) using FTP and when I throw an unhandled exception the yellow asp.net appears and an event is logged in the Application Event Log, nothing from my Application_Error.
I've tried various combinations of customErrors On/Off/Remote but all with the same result. Some posts I've seen mention a PrecompliedApp.config which I do not have in my project folder or on the server.
Any ideas why the Global.asax isn't working?
Go to the complete details ...