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..
- Right click on my field and selected "Format Object"
- Went to "Paragraph" Tab
- Selected "HTML Text" option from "Text Interpretation"
Everything is good but it's not showing the color because I have set the font color black. My HTML content contains some words in color like this
<p>This is <span style="color:red">Red</span></p>
If I set the formula in "Font" property of my field, it will color the whole content.
Please Help