I have this form on my view:
On my controller I have the following method:
[HttpPost]
public ActionResult UploadFile(HttpPostedFileBase file)
{
// ...
}
How can I receive the id of the input tag that was clicked to upload the file? (id=1 or id= 2?
Thank you!!!