Hi,
You probably get this error while uploading or exporting a document on web pages.
In order to resolve this, you should add
<httpRuntime maxRequestLength="1048576" />
inside your web.config - system.web section.
This would allow you to increase the limit 1 GB,
With .Net 2.0 you can use 2097151 (2GB)
You probably get this error while uploading or exporting a document on web pages.
In order to resolve this, you should add
<httpRuntime maxRequestLength="1048576" />
inside your web.config - system.web section.
This would allow you to increase the limit 1 GB,
With .Net 2.0 you can use 2097151 (2GB)