我是新手,需要通过表单上传来上传~2GB文件。
我不确定2GB文件是否会在“操作URL” - (http:// localhost:49980 / videoupload.aspx)页面上作为一个整体收到,还是会以部分/块的形式收到?
提前感谢您的澄清!
答案 0 :(得分:0)
首先Increasing the Maximum Upload Size
4MB默认值在machine.config中设置,但您可以在web.config中覆盖它。例如,要将上传限制扩展到20MB,您可以这样做:
然后以大块字节上传文件。 ASP.Net: Writing chunks of file..HTTP File upload with resume和Upload Large Files in ASP.NET Using HttpModule。
你可以这样做:Recommendations for best ASP.NET file upload tool
供参考:
Streaming large file uploads to ASP.NET MVC
Multiple File Upload With Progress Bar Using Flash and ASP.NET
Upload large files in .NET