ASP.NET File Upload control restriction?
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
Is there a size limit when using File Upload control in ASP.NET? I cant upload larger file like 50MB or so!!
-
Is there a size limit when using File Upload control in ASP.NET? I cant upload larger file like 50MB or so!!
No, there is no size limit for the control, but there is a limit on the size of a request that the server will accept. By default it will not allow more than 4 MB. You have to change the maxRequestLength property in web.config. --- b { font-weight: normal; }
-
Is there a size limit when using File Upload control in ASP.NET? I cant upload larger file like 50MB or so!!