据我所知,Crystal报告在解释HTML标签时有很多限制。我还看到了here提供的受支持标签列表。但是,我有tr
和td
标签,我无法避免使用它。
我可以在HTML和Crystal Report之间做些什么来创建表格吗?
样本数据
<p>Your tenses are a bit confused here.
For next piece of writing, write everything in past tense. Set all your
story with “Last Sunday” to get used to recounting in past
tense first.</p>
<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
<tbody>
<tr>
<td>look</td>
<td>looked</td>
</tr>
<tr>
<td>cook</td>
<td>cooked</td>
</tr>
<tr>
<td>bless</td>
<td>blessed</td>
</tr>
</tbody>
</table>
<p> </p>