0
Upload files through Fileupload has a maximum size of 4 MB, after searching I found here in stackoverflow that should add :
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
The problem is that the site runs if I add this information, plus I have the same error, how could I solve this problem? thank you