多个= QUOT;多" FileUpload不适用于IE [英] multiple="multiple" of FileUpload is not working for IE

查看:96
本文介绍了多个= QUOT;多" FileUpload不适用于IE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好b $ b全部,



多次 文件上传控件的属性不起作用在IE中

Hi All,

The attribute multiple of File Upload control is not working in IE

<asp:FileUpload runat="server" ID="flu" multiple="multiple" />





任何人都知道为什么我无法使用Internet Explorer中的文件上传控件选择多个文件?



任何答案都将不胜感激!!:玫瑰:



先谢谢,

Imdadhusen



Could anybody has idea why i could not able to select multiple file using file upload control in Internet Explorer?

Any answer will be appreciated!!:rose:

Thanks in Advance,
Imdadhusen

推荐答案

FileUpload控件不允许多个文件上传。
The FileUpload control doesn't allow multiple file uploads.


Include the below meta tag inside the head section of your document before everything else.
<meta http-equiv="X-UA-Compatible" content="IE=edge">

Or you can do it in the web.config file by sending a custom header.
<system.webServer>
   <httpProtocol>
      <customHeaders>
         <add name="X-UA-Compatible" value="IE=edge" />
      </customHeaders>
   </httpProtocol>
</system.webServer>

这篇关于多个= QUOT;多&QUOT; FileUpload不适用于IE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆