I am trying to upload a file, here is my setting
<system.web>
<compilation debug="true" />
<httpRuntime executionTimeout="110"
maxRequestLength="4096"
requestLengthDiskThreshold="256"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="5000"
enableKernelOutputCache="true"
enableVersionHeader="true"
requireRootedSaveAsPath="true"
enable="true"
shutdownTimeout="90"
delayNotificationTimeout="5"
waitChangeNotification="0"
maxWaitChangeNotification="0"
enableHeaderChecking="true"
sendCacheControlHeader="true"
apartmentThreading="false"
/></system.web>
Here I set maxRequestLength to 4MB, but I am able to upload up to 500kb only. I have tried with multiple settings but couldn't get any solution. Where should i chage to make it work ?