Here's the simple solution to uploading large files in ASP .net.
Add a new key in the web.config. The fileSize (maxRequestLength) is in kilobytes with a default size of 4.
The key to add is
1 | <httpRuntime maxRequestLength="2000000"/> |
Here's the simple solution to uploading large files in ASP .net.
Add a new key in the web.config. The fileSize (maxRequestLength) is in kilobytes with a default size of 4.
The key to add is
1 | <httpRuntime maxRequestLength="2000000"/> |