I'm trying to catch the 'Maximum request length exceede' exception which is thrown by ASP.net if you attempt to upload too large a file. I've tried putting...
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
}
... in Global.asax with and without inheriting from 'umbracoGlobal' and I've tried creating an HttpModule and nothing has so far worked. Any ideas?
Can't handle Application_Error
I'm trying to catch the 'Maximum request length exceede' exception which is thrown by ASP.net if you attempt to upload too large a file. I've tried putting...
... in Global.asax with and without inheriting from 'umbracoGlobal' and I've tried creating an HttpModule and nothing has so far worked. Any ideas?
is working on a reply...