In the web.config file, I have set the maximum request length to 10240 and execution timeout to 30:
<httpRuntime maxRequestLength="10240" executionTimeout="30" />
Using valum's AjaxUpload plugin on the client side, I encountered an issue with IE 9 where I couldn't check the uploading file size using JavaScript due to lack of support. This results in the server throwing an exception because of the configuration in the web.config file mentioned above. How can I handle this exception and display a message to the user? Thank you in advance.