You must Sign In to post a response.
  • Category: ASP.NET

    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">
  • #769364
    Thanks for posting. Rather than editing post, if you have replied this thread with answer, it will be more clear and helpful.

    Answered by Author (Priya Narayan):
    Fix : Add below meta tag in header section of the page.
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    -------------
    Glad to be,
    John Bhatt
    Editor - DNS Forums
    https://www.pyarb.com


  • Sign In to post your comments