I want to upload excel file using SqlBulkCopy into a SQL Server 2005 table. My excel file size is 43MB. When I am uploading this file it will display error message that
The request filtering module is configured to deny a request that exceeds the request content length.
My web.config file setting is
<httpRuntime executionTimeout="12000" maxRequestLength="2097151"
useFullyQualifiedRedirectUrl="false" minFreeThreads="8"
minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>
Thanks in advance.