Visual Studio Reports (RDLC): html tags are ignored -
i'm using visual studio reports render html text, using built-in option set placeholder html text.
now, works 1 thing: have problem <font>
tags. in particular, if set size in points, like:
<font size="5pt"> text </font>
or even:
<font style="font-size:5pt">5pt line</font>
this gets ignored completely.
should note both above examples work fine in web browsers, , <font>
1 of officially supported tags in rdlc. what's going on here??
the font tag doesn't seem supported, using span tag work. set following expression value of placeholder , render correctly:
="<span style='font-size:5pt'> text </span>"
also, ensure 'markup type' set 'html' in placeholder properties.
Comments
Post a Comment