Hi Maumee,
It's likely that this is caused my the maxRequestLength setting in the machine.config file for your system. You'll find this attribute on the httpRuntime element, like this:
Code:
<httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"
/>
As you can see, maxRequestLength is set to 4096 which equals the 4 MB limit you seem to hit.
To solve this, you can change this in the Machine.config file, or better yet, override the setting in the site specific Web.config file. Look here for more info:
http://msdn.microsoft.com/library/de...imesection.asp
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to:
Mezzanine by
Massive Attack (Track 9 from the album:
Mezzanine)
What's This?