Providing full HTML in SSRS 2008 (not just tags)

Can I display other forms of HTML syntax besides the basic tags for rich text in SSRS 2008?

If I create an expression that is an HTML placeholder, SSRS successfully displays the main tags like "b", "i", "p", "br" and other rich text-oriented tags. But if I want to do something like embedding an image from a URL or creating a table using HTML, then that HTML bit just won't display. However, the report is not implementable; it just ignores this bit of HTML.

Perhaps the full HTML support in the SSRS 2008 report can be obtained using other means than the HTML placeholder expression. I have learned to use a report item other than a text field to support more HTML files, but I don’t see any available.

+4
source share
1 answer

The simple answer is no. Only a small part is officially supported. I searched high and low to support other tags (in particular, support), and it, among other things, is not supported. The following tags are supported:

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 processing: <OL>, <UL>, <LI>

Source: MSDN

+3
source

Source: https://habr.com/ru/post/1402269/


All Articles