How to upload a file more than 4MB in asp.net with the FileUpload control?
-
My question is how i can upload a file which has size more than 4MB with the FileUplaod control of asp.net. I can able to upload file less than 4MB but more than 4MB i can not upload. For that which type of changes i have to made in my code or property. pls, give me proper answer.
-
My question is how i can upload a file which has size more than 4MB with the FileUplaod control of asp.net. I can able to upload file less than 4MB but more than 4MB i can not upload. For that which type of changes i have to made in my code or property. pls, give me proper answer.
Add this to the web.config
<System.Web>
<httpRuntime maxRequestLength="10000" />
</System.Web>The number “10000” is in Kilobytes so this would give u 10 MB. U can change it to any file size u want Hope this would help
Best Regards 3ala2 :)