Welcome Guest Search | Active Topics | Members | Log In | Register

System.Web.HttpException: Maximum request length exceeded... Options · View
adellos
Posted: Thursday, December 18, 2008 2:21:27 PM

Rank: Administration
Groups: Administration

Joined: 10/28/2008
Posts: 75
Points: 251
FileUp Standard Edition can accept uploads of up to 4 gigabytes. FileUp Enterprise Edition can accept unlimited size uploads. However, when using the product in .NET, it is important to configure the application settings to make sure ASP.NET doesn't block the large uploads before FileUp can process them.

The maxRequestLength parameter is set in the httpRuntime section of web.config (or machine.config). maxRequestLength is set in kilobytes. So, for example, if you want to allow uploads of 100 MB, you would set maxRequestLength to 102400.

There are some other settings in httpRuntime which you may want to modify for large uploads. Below is an example httpRuntime element. Please adjust the settings according to the needs of your application.



Code:
<httpRuntime
      executionTimeout="1200"
      maxRequestLength="102400"
      useFullyQualifiedRedirectUrl="false"
      minFreeThreads="8"
      minLocalRequestFreeThreads="4"
      appRequestQueueLimit="100" />


Thanks Source

Adam D. Technology
Adam Dellos
adellos@adamdtechnology.com
(520) 591-3891
http://www.adamdtechnology.com
"We give you twice the work in half the time and leave you with a peace of mind!"
Sponsor
Posted: Thursday, December 18, 2008 2:21:27 PM
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

ASPNET Theme created by Boskone (Dan Ferguson)
Powered by Yet Another Forum.net version 1.9.1.8 (NET v2.0) - 3/29/2008
Copyright © 2003-2008 Yet Another Forum.net. All rights reserved.
This page was generated in 0.244 seconds.