Display RichTextBox string in RDLC report
-
I have rdlc string in which some words are bold,have text color,italic,etc and this string i get from database and i need to display it in rdlc report as is formated.
Assuming the field is formatted with HTML, you should just need to set the "Markup type" property on the field to "HTML": http://msdn.microsoft.com/en-us/library/dd207057.aspx[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Assuming the field is formatted with HTML, you should just need to set the "Markup type" property on the field to "HTML": http://msdn.microsoft.com/en-us/library/dd207057.aspx[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
If your report is running against SQL Server 2005, you can't use inline formatting. If it's running against SQL Server 2008 or higher, the "Markup type" property should work. Depending on your version of BIDS, you might need to open the report in Report Builder to access the property.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer