0

I am a newbie and have a requirement to upload ~2GB files via form upload.

I am unsure whether the 2GB file will be received as a whole on the "action URL" - (http://localhost:49980/videoupload.aspx) page or will it be received in parts/chunks?

Thanks in advance for clarifying!

D.G
  • 85
  • 6

1 Answers1

0

Firstly Increasing the Maximum Upload Size

The 4MB default is set in machine.config, but you can override it in you web.config. For instance, to expand the upload limit to 20MB, you'd do this:

Then upload your file in chunk of bytes. ASP.Net: Writing chunks of file..HTTP File upload with resume and Upload Large Files in ASP.NET Using HttpModule.

you can go for this: Recommendations for best ASP.NET file upload tool

For Reference:
Streaming large file uploads to ASP.NET MVC
Multiple File Upload With Progress Bar Using Flash and ASP.NET
Upload large files in .NET

Community
  • 1
  • 1
Niranjan Singh
  • 18,017
  • 2
  • 42
  • 75