0
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"

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

1

1 Answers

1
votes

You probably have to fall back to old school HTML:

<p>This is <font color="red">Red</font></p>

Crystal Reports does not have an advanced HTML renderer.