I need to get files from a single file uploader and a multiple file uploader from the same form. And also need to know from which input field those files are coming. From Request.Files i can get all files but can't know from which field those file are coming.
I have a form.
<form>
<input type="file" name="file1">
<input type="file" name="files" multiple="true">
</form>`