Ajax post request has more than 4 MB of file
2 answers
You need to change two config options (the value is in KB)
In Web.Config
<configuration>
<system.web>
<httpRuntime maxRequestLength="8192" />
</system.web>
</configuration>
In IIS
Update the "Maximum Allowed Content" setting as described here: http://ajaxuploader.com/large-file-upload-iis-asp-net.htm
+2
source to share