Skip to content

Instantly share code, notes, and snippets.

@SvenPam
SvenPam / demo.cs
Created June 14, 2016 14:24
POST Multiple Images
[HttpPost]
public async Task<JsonResult> MyAction(IEnumerable<HttpPostedFileBase> files)
{
// Do stuff
...
return new JsonResult() { Data = 'Ok' };
}