Friday, June 6, 2014

How to increase maximum request length in web.config?

The default upload file size if 4MB. To increase it, please use this below section in your web.config

This code will allow file size upto 20MB.
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="20480" />
    </system.web>
</configuration>


No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...