Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how can i display html Content like table,and other html tag in rdlc report

What I have tried:

i was try to set the placeholder property HTML-Interpret HTML tag as style true but its not working
Posted
Updated 2-Sep-16 5:33am

1 solution


The following is a complete list of tags that will render as HTML when defined as placeholder text:
  • Hyperlinks: <A href>
  • Fonts: <FONT>
  • Header, style and block elements: <H{n}>, <DIV>, <SPAN>,<P>, <DIV>, <LI>, <HN>
  • Text format: <B>, <I>, <U>, <S>
  • List handling: <OL>, <UL>, <LI>

Any other HTML markup tags will be ignored during report processing.

As you can see, <table> is not a supported tag.
 
Share this answer
 
Comments
Member 11930887 6-Sep-16 0:46am    
thnx sir, but it is possible to have different font-size content as a data source in single text-box? for example if i want to print in report some Text (HTML Conntent) comes from database which have different size of fonts and dynamic content then it is possible or not??
Richard Deeming 6-Sep-16 7:46am    
Try with <font size="...">...</font>:
HTML font tag[^]

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