Hi,
I am using SSRS 2008 R2. One of my report is rendering the html field in the report. The html contains table tags which is unable to display in the report cell. It is displaying only first cell of first column and row. Is there a way to display the table html tag in the report cell. If the html is having paragraph or bulletted or numbered it is displaying properly.
Example:
The below html tags are present in database column.
**********************************************
<!-- Codes by HTML.am -->
<table border="1" style="font-family:Georgia, Garamond, Serif;color:blue;font-style:italic;">
<tr>
<th>Table Header</th><th>Table Header</th>
</tr>
<tr>
<td>Table cell 1</td><td>Table cell 2</td>
</tr>
<tr>
<td>Table cell 3</td><td>Table cell 4</td>
</tr>
</table>
***********************************************
I want to display the table formatted data in the report cell?
Is this possible to display the table formatted html in ssrs report?
Thanks in advance,
Srini.