Upload File
-
Hi ASP.NET Gurus, I'm writting ASPX page uploading file(using control ). But it only work correct when uploading file with small size. When I upload over 10MB file, it won't work and redirect to "Page not found" page. Is there any way to solve this problem? Please help me!!!!!:( Thanks, Tran Thai Nam
-
Hi ASP.NET Gurus, I'm writting ASPX page uploading file(using control ). But it only work correct when uploading file with small size. When I upload over 10MB file, it won't work and redirect to "Page not found" page. Is there any way to solve this problem? Please help me!!!!!:( Thanks, Tran Thai Nam
In the Web.config inside the below mentioned section <System.web> . . <System.web> Add This Key <httpRuntime maxRequestLength="20000" > it Should Work the Default size of the Request is i guess 4096 kb which you can override in web.config to your preferred, i dont know its drawbacks -- modified at 2:46 Thursday 23rd March, 2006
-
Hi ASP.NET Gurus, I'm writting ASPX page uploading file(using control ). But it only work correct when uploading file with small size. When I upload over 10MB file, it won't work and redirect to "Page not found" page. Is there any way to solve this problem? Please help me!!!!!:( Thanks, Tran Thai Nam
i hope u have to edit the property of fileuploadsize hi to all with regards, susa
-
In the Web.config inside the below mentioned section <System.web> . . <System.web> Add This Key <httpRuntime maxRequestLength="20000" > it Should Work the Default size of the Request is i guess 4096 kb which you can override in web.config to your preferred, i dont know its drawbacks -- modified at 2:46 Thursday 23rd March, 2006
-
i hope u have to edit the property of fileuploadsize hi to all with regards, susa
-
Hi ASP.NET Gurus, I'm writting ASPX page uploading file(using control ). But it only work correct when uploading file with small size. When I upload over 10MB file, it won't work and redirect to "Page not found" page. Is there any way to solve this problem? Please help me!!!!!:( Thanks, Tran Thai Nam
-
Hi Nam, You simpy increase the value of the
maxRequestLength
attribute of the httpRuntime[^] element. -
In the Web.config inside the below mentioned section <System.web> . . <System.web> Add This Key <httpRuntime maxRequestLength="20000" > it Should Work the Default size of the Request is i guess 4096 kb which you can override in web.config to your preferred, i dont know its drawbacks -- modified at 2:46 Thursday 23rd March, 2006
-
Hi ASP.NET Gurus, I'm writting ASPX page uploading file(using control ). But it only work correct when uploading file with small size. When I upload over 10MB file, it won't work and redirect to "Page not found" page. Is there any way to solve this problem? Please help me!!!!!:( Thanks, Tran Thai Nam