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

Show all version of excel file in upload control (asp.net)

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

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

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

非常感谢您的评论!

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

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