Hi,
I am getting this erro when i am trying to upload a video in my site, can u tell me what is the solution for this, why it is coming. Thank you
Hi,
I am getting this erro when i am trying to upload a video in my site, can u tell me what is the solution for this, why it is coming. Thank you
The maximum request size is, by default, 4mb (4096 bytes)
This is explained here: http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626
The above article also explains how to fix this issue :)
If you are using IIS for hosting your application, then the default upload file size if 4MB. To increase it, please use this below section in your web.config -
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
Just to add - If you are using IIS7 then you need to use below lines instead of above -
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576" />
</requestFiltering>
</security>
</system.webServer>
There's an element in web.config to configure the max size of the uploaded file:
<httpRuntime
maxRequestLength="1048576"
/>
HTH