Reputation: 2202
How do I send an excel file coming from file upload input to my ASP.NET WebAPI and then save that excel file so I can read its data?
Here's what I've got (button click calls upload()) - just the basics, which works fine:
function upload() {
$.getJSON("api/uploads/uploadfile",
function (data) {
$("#mydiv").append("Success: " + data.Success + " Failed: " + data.Failed);
});
}
And my ASP.NET WebAPI method:
public DBResult UploadFile()
{
DBResult result = new DBResult();
result.Success = 0;
result.Failed = 0;
return result;
}
Any help is greatly appreciated.
TIA
Upvotes: 2
Views: 20362
Reputation: 171
I posted a similar solution at another question, but using c# to post to webapi:
How To Accept a File POST
Upvotes: 1