重复excel与html标签的问题
本文关键字:问题 标签 html excel 重复 | 更新日期: 2023-09-27 18:08:28
嗨,我正试图将我的Repeater内容导出到Excel中。我遵循了这篇文章,一切都很好。
http://www.aspsnippets.com/Articles/Export-ASPNet-Repeater-Control-to-Excel-File.aspx无论如何我有一个小问题。在中继器列内,我有HTML文本,导出后分成多行。如何将重复器导出到excel与HTML内容成单行和单列。
以下是我的中继器输出:
<table>
<tr>
<td>Name</td>
<td>Abc is Name</td>
</tr>
<tr>
<td>Email</td>
<td>Email@123.com</td>
</tr>
<tr>
<td>Description</td>
<td>
<h1>Description title</h1>
<p>Content for description</p>
<table>
<tr>
<td>Contact</td>
<td>Value for contact</td>
</tr>
<tr>
<td>Email</td>
<td>Emails goes here</td>
</tr>
</table>
</td>
</tr>
</table>
我需要描述字段成单列。
谢谢
在复制到剪贴板之前尝试使用<pre>
标签或更改数据格式
将中继器更改为Gridview,并且工作正常。下面是我点击的链接:http://www.aspsnippets.com/Articles/Export-GridView-to-Excel-in-ASPNet-with-Formatting-using-C-and-VBNet.aspx