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
Here's the ASP.NET Web API controller that I've come up with to save the chunks and assemble them.
This repository on Github has implementation of parsing and consolidating of flow js chunks on MVC.
It's very easy to implement. Just drop provided files in your project and your controller will look something like this
-- Disclaimer. I'm the author of this repo.