How to upload file in chunks in ASP.NET using ng-Flow
问题 I am trying to implement ng-flow https://github.com/flowjs/ng-flow for file upload. It upload files in chunk, I successfully set this on client but I am not sure how to handle file on backend inside web api method. public void Upload() { //how to handle file? } The request contain the following information 回答1: Here's the ASP.NET Web API controller that I've come up with to save the chunks and assemble them. using System; using System.Diagnostics; using System.Collections.Generic; using