Upload over 2GB file to Asp.Net?

I am trying to upload a 2+ GB video file using FTP. When I click the "Load" button in the browser, the page does not receive the message, but the status in the browser is DONE. The same works great for video files less than 2GB.

I just added one page using the browser and one button to publish the page.

Just click the button to publish the page with 2gb file.

The page was not submitted to the server.

+2


source to share


3 answers


split the file into smaller chunks, move them, and then merge them again.



+1


source


MSDN

edit: you can make files up to 2GB + with ASP.NET using a 3rd party solution that overrides the built-in request validation. This will work in all versions of IIS except IIS 7 Integrated Mode, which has a hard limit of 2 GB.



Read this

Read this: http://www.webdavsystem.com/server/documentation/upload

+1


source


Limitations imposed by browsers on the amount of data you can load in a single request. In IE I think it is 2gb.
What are you using?

0


source







All Articles