R
Robert Strickland
What is the default file size limit when uploading a file and can the
administrator up that limited when needed?
administrator up that limited when needed?
Steve said:You can add or modify the following section in your web.config file:
<configuration>
<system.web>
<httpRuntime maxRequestLength="4096" />
</system.web>
</configuration>
The above value (4096 KB) is the default maximum upload file size.