What is the maximum file size allowed to upload to server using FileUpload control in asp.net ?
Is there any other better way to upload large files to server?
I get empty page if I upload file greater than 50MB.
I have added following in Web.Config
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="180" />
</system.web>