Large File uploading to asp.net MVC

后端 未结 4 501
囚心锁ツ
囚心锁ツ 2020-12-12 17:59

I need a way to upload large files (600 mb to 4 gb) in an asp.net mvc website. Currently I am using swfupload; it works well enough, but it is a huge hit on the webserver b

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 18:23

    A SignalR implementation example can be found here.

    This also includes functionality for working with HttpContext.Request.GetBufferlessInputStream(), which allows you to begin working with the post data before it's fully uploaded.

提交回复
热议问题