Решение:
This problem is because of the maxRequestLength setting (Default is 4MB). You cannot upload a file which its size is more than the maxRequestLength.
Ex: The configuration below changes the maxRequestLength to its maximum value (2GB)

<system.web>
...other settings...
<httpRuntime maxRequestLength="2097151" />
</system.web>

Еще более правильное решение:
Добавил следующий код в <system.webServer>:

<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2000000000" />
</requestFiltering>
</security>

Возможно еще надо будет добавить (или под
редактировать) следующую строчку в <system.web>:

<httpRuntime
executionTimeout=”100000?
maxRequestLength=”2000000? />

 

Опубликовано в ASP.NET