在上传控件中显示所有版本的excel文件(asp.net)

时间:2015-07-22 02:06:24

标签: asp.net excel upload

以下代码是我上传控制的代码。

<asp:FileUpload ID="FileUpload1" runat="server" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />    

它唯一会在上传控件中显示Excel(.xlsx)文件。如何让它也显示Excel(.xls)文件?

非常感谢您的评论!

1 个答案:

答案 0 :(得分:4)

accept属性值可以设置逗号分隔的字符串。

<asp:FileUpload 
    ID="FileUpload1" 
    runat="server" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />