在 vb.net 中从 HTML 表导出到 Excel
我是 ASP.NET 世界的新手。
我有任何 ASP.NET 应用程序,可以从数据表中的存储过程获取数据。
我想将数据填充到 HTML 表中,然后将其导出到 Excel。
不幸的是,这些必须以冗长的方式完成(每列单独),因为数据在导出到 Excel 之前是根据用户登录凭据进行修改的。
这是我所拥有的(非常基本)
<table>
<tr>
<td>EmployeeID</td>
<td>EmployeeFirstName</td>
<td>EmployeeLastName</td>
<td>EmployeeLastName</td>
</tr>
</table>
If DataTable.HasRows Then
.....
.....
End If
I am a newbie in the asp.net world.
I have any asp.net application where I get data from a stored procedure in a datatable.
I would like to populate the data in an HTML table and then export it to excel.
Unfortunately these have to be done the long winded way (each column individually), since the data is modified based on user login credentials, before it is exported to excel.
Here is what I have (pretty basic)
<table>
<tr>
<td>EmployeeID</td>
<td>EmployeeFirstName</td>
<td>EmployeeLastName</td>
<td>EmployeeLastName</td>
</tr>
</table>
If DataTable.HasRows Then
.....
.....
End If
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将其填充到 HTML 表中,您必须从 VB 服务器端代码动态创建该表。您必须从存储过程中定义单元格和行的数量。
您基本上必须像此示例一样定义 Html 表,并使用存储过程中的信息填充它。
并将其添加到“我”面板中。
这是如何将 html 导出到 Excel 的链接 http://www.devx.com/tips/Tip /14235
To populate it to the HTML table you must create the table dynamically from the VB server side code. you must define amount of cells and rows from your stored procedure.
you basically have to define your Html table like this example and populate it with the info from your stored procedure.
and than add it to the Me panel.
here is the link how to export html to excel http://www.devx.com/tips/Tip/14235