I have an MVC3 C#.Net web app. In my HTML View, I am using the standard Windows file input
<input style="border:thin solid #ccc;width:270px; background-color: #FFFFFF;" type="file" name="Name" id="Name"/>
It's working fine except for big files. I can upload a 2mb file bit not a 4mb file. Is there a max file size for this input type or can I set the maxsize somehow?
Try changing the
maxRequestLength
in your web.config.The value is in kilobytes. 4096 is actually the default value, your file might be slightly larger so maybe try a higher number.