Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using HTML rich text editor in my Asp.net project and I saved some HTML content to database. Now I want to display those formatted text in Crystal reports so I have done following steps..
1. Right click on my field and selected "Format Object"
2. Went to "Paragraph" Tab
3. Selected "HTML Text" option from "Text Interpretation"

But it's not working.

Here is my HTML Content which I want to show to Crystal Report from database
HTML
<p>This is <span style="color:red">Red</span></p>

According to above content, it should display the word Red in red color but it still showing black.

Please help....
Posted
Updated 1-Sep-15 22:01pm
v2
Comments
DamithSL 2-Sep-15 3:56am    
can you update the question with sample html content you saved in the database?
Member 10371622 2-Sep-15 4:09am    
I have updated my question.
DamithSL 2-Sep-15 4:31am    
try with
<p>This is <font color="red">Red</font></p>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900