tags:

views:

417

answers:

3

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.

+1  A: 

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

Mitch Wheat
My first problem , my page was not posted to the server with one browser control of file size of 2.1gb and button to post the page.
Ramesh
A: 

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?

catchamonkey
I am using FF3.5
Ramesh
A: 

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

anishmarokey
How to combine smaller pieces of files in to one.
Ramesh
i am given one link in stack overflow . Try with that .
anishmarokey
if this like helps you . Give one plus vote :)
anishmarokey