I used the following HTML to create a file dialog box within a form:
<input type="file" name="XMLFile">
Works fine except it only lets you select one file at a time. Is there any way to create the standard multiple-select dialog box where the user would use the control or shift key to select more than one file?
<input type="file" name="XMLFile">
Works fine except it only lets you select one file at a time. Is there any way to create the standard multiple-select dialog box where the user would use the control or shift key to select more than one file?