I am trying to upload a 305968 kb file, I keep getting an error that file is too big, maximum file size exceeded. I did the below changes in web.config file , but I keep getting an error
<httpRuntime requestValidationMode="2.0"
executionTimeout="7200" maxRequestLength="102400" minFreeThreads="88"
minLocalRequestFreeThreads="76" appRequestQueueLimit="200"/>
<compilation debug="true" targetFramework="4.0">
I also made this change in web.config file
<security>
<requestFiltering>
<requestLimits maxQueryString="10000"
maxUrl="10000" maxAllowedContentLength="3072000000"></requestLimits>
</requestFiltering>
</security>
Check this..