Issue with File upload control - multiple files not selected in IE browser
<asp: FileUpload AllowMultiple="true" ID="fileuploadMulti" runat="server" Width="480" Height="20" />Issue : Though placed AllowMultiple="true", when we click browse button single file is selected in IE browser but the same working in chrome and mozilla.
Fix : Add below meta tag in header section of the page.
<meta http-equiv="X-UA-Compatible" content="IE=edge">