I have written this in web.config:
<httpRuntime maxRequestLength="10240" executionTimeout="30" />
On client side I'm using valum's AjaxUpload plugin. When using IE 9 I can't check uploading file size with JavaScript, because IE 9 does not support this. So if I upload large file with IE, server will throw exception because of above setting written in web.config. How can I catch this exception and show message to user? thanks in advance