Ramesh
Ramesh

Reputation: 1752

Upload more than 2GB file in Asp.Net?

I am trying to upload a 2+ GB video file using FTP . When I click “Upload” button in browser control, the page is not getting post but the status in browser is DONE. The same works fine with video files less than 2GB.

I just added one page, with browser control and one button for posting the page.

Just clicked the button, to post the page with 2gb file.

The page was not posting to server.

Upvotes: 2

Views: 1601

Answers (3)

anishMarokey
anishMarokey

Reputation: 11397

MSDN

edit : You can do files up to 2GB + with ASP.NET using a third party solution that overrides the built-in request checking. This will work in all versions of IIS except IIS 7 integrated mode, which has a hard 2GB limit.

Read this

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

Upvotes: 1

Chris Sedlmayr
Chris Sedlmayr

Reputation: 979

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

Upvotes: 0

Mitch Wheat
Mitch Wheat

Reputation: 300719

split the file up into smaller chunks, FTP those, and then re-combine.

Upvotes: 1

Related Questions