File upload error
Hello All,
I am facing a problem with file upload(csv file). I am using file upload control on my aspx page. Everything works well on my machine but when i deployed it on test server, it shows an error "This page can't be displayed".(I dont know why it is coming bcoz i am using try catch block)
When i remove some records in the file, everything works well. Size of the file is 124 kb. i think we can upload upto 4 mb files. In my web.config i use this code to set the size of the file. I know problem is with the size of the file. But if is the problem why it is working on my machine.
<httpRuntime
executionTimeout="54000"
maxRequestLength="1048576"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>
Thanks in Advance
|