Our company is moving to a C# website based on Ektron. I am only vaguely familiar with C# the language, and I haven't used IIS before.
I'm trying to figure out how to hook in to the exception handling mechanism. I want to make sure that if an exception is thrown and isn't caught, I can dispatch an email and redirect to an error page.
As far as I can tell, the important files are web.config and global.asax. But to my knowledge, all web.config can do is specify a redirect URL (and I wouldn't know how to recover the information in the Exception object that was thrown). And my project doesn't even have a global.asax file. (I'm not sure if I need to create that, or if it is deprecated, or if Ektron handles for me).