如何读取 Excel 中的表头并将其自动显示在 ASP.NET MVC 页面上?
(最后)我能够读取位于 App_Data 文件夹中的 Excel 文件并将其显示在视图上。现在我想进一步推动逻辑。 而不是手动在我的页面上编写以下标题标记:
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
我希望能够读取 Excel 工作表上的第一行,并通过foreach 循环, 在页面上重新创建标题。或者,如果有不同的方式来获得不同的标题,我愿意。
我该怎么做?
编辑
这是连接字符串
<add name="xls"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;
Data Source=|DataDirectory|Book1.xlsx;
Extended Properties='Excel 12.0 Xml;HDR=YES';"
/>
感谢您的帮助
(finally) I was able to read a Excel file located in the App_Data folder and display it on a view. Now I'd like to push the logical further. Instead of writing the following header tags on my page by hand,
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
I'd like to be able to read the first row on my Excel Sheet and, through a foreach loop, recreate the header on the page. Or, if there's a different way of getting the header differently, I'm open.
How do I do that?
EDIT
Here's the connection string
<add name="xls"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;
Data Source=|DataDirectory|Book1.xlsx;
Extended Properties='Excel 12.0 Xml;HDR=YES';"
/>
Thanks for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用 Open XML SDK http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en
它允许您将 Excel 工作表读取为一个 xml 文档。
We do this using the Open XML SDK http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en
It allows you to read an excel sheet as an xml document.