I am using SSRS 2008. I have a rich text box in asp.net where i enter some text with formatings and some images are also inserted along with the text. when saving this text into database table it is saved in html format and looks like this.
-----------------------------
I am testing<img alt="" src="C:\WebApplicationTelerikCSharp\Images\Water.jpg" /> <u>testing this again</u>
<b>Testing this again and again</b>
------------------------------
we can see that only the <img> tag is getting in to table instead of image. but when i try to bing this html content to a Textbox on the report . it shows only the text and its not parsing the <img>
But my requirement is to show some images along with the formated text.
Any suggestions are appreciated?