Render html code in sql server client report (rdlc)
Posted
by masoud ramezani
on Stack Overflow
See other posts from Stack Overflow
or by masoud ramezani
Published on 2010-01-31T14:57:53Z
Indexed on
2010/04/29
6:07 UTC
Read the original article
Hit count: 613
I am using the asp.net web application and microsoft visual studio reportviewer control and rdlc for creating a report ( not using sql server reporting). I used the Product table to view the result. It has five fields and I display all the itemsin the report. One field is Description and it store the html code as the value(eg:
<div><ul><li>a</li><li>b</li></ul><b>aaaa</b></div>
). I want to disply the output of this html code in my report's description field. But in my report, it shows the html value that I stored in my table (:
<div><ul><li>a</li><li>b</li></ul><b>aaaa</b></div>
). How can I render the html in my report. Please give me a solution.
© Stack Overflow or respective owner