Blog
How to prevent large file upload using web.config
How to prevent large file uploading usinf web.config
Adding following to the system.web section of the web.config file will also prevent over-large uploads from being created
<!-- set max upload to 25 MB -->< httpRuntime executionTimeout = "300" maxRequestLength = "25000" />