Uploading files greater than 2GB in ASP.NET MVC 3 -


i trying upload video files larger 2gb on asp.net mvc 3 project maximum file upload size asp.net 4.0 seems @ 2gb. there way exceed limitation in asp.net/iis? or approach around this?

i using uploadify file upload control. , resources achieving appreciated.

cheers

according experience there no way upload file on 2gb in single request. there 2gb limitation in iis, , there no workaround.

in .net 4.0 , earlier there 2gb (some people 4gb) limitation in asp.net, was fixed in .net 4.5. fix makes little sense because iis not support file uploads on 2gb.

the way upload files on 2gb iis-hosted server break pieces , upload piece piece. here clients can upload breaking file segments:

  1. it hit ajax file browser
  2. sample webdav browser

note these clients require server support put range header.

another solution create httplistener-based server. httplistener has less functionality comparing iis not have upload limitations.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -