I'm not sure I understood the question? When you download a file from an html form, you get the whole form formatted as multipart / form-data, which means that each field gets its own value sent along with the files.
You just need to define the handler method as Post (string formValue, IFile), and it will work as is.
source
share