2
Answers

Export Excel Sheet Problem

Sameer Khan

Sameer Khan

7y
263
1
When i export Excel Sheet using file uploader i am getting correct count of dataset when running from local machine. But when i upload the code on server i am not getting proper count in dataset.

Example : When Uploading from code = 6000 which is perfect according in excel sheet
but when upload on server the count which i getting is 4000

What I have tried:

In Web Config File
<pre>maxRequestLength="10240" requestLengthDiskThreshold="10240"
Answers (2)
0
Sameer Khan

Sameer Khan

NA 100 11.3k 7y
<httpRuntime executionTimeout="9000000" maxRequestLength="51200" requestLengthDiskThreshold="10240" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100000" enableVersionHeader="true"/>
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 7y
You can add one more attribute executionTimeout:
 
<httpRuntime maxRequestLength="51200" executionTimeout="300"/>
executionTimeout: in mili seconds
 
Secondly, add log that which row is processed so that you can know at which row it is creating issue.