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