coding filters & supported html tag in ssrs html

Which HTML Tags Are Supported in SSRS?

SQL Server Reporting Services (SSRS) supports a limited subset of HTML tags when rendering text in a report, particularly in textboxes. These tags can be used to apply formatting like bold, italic, underline, and lists within the SSRS report.

Here are the supported HTML tags in SSRS:

  • Bold text: <b>, <strong>
  • Italic text: <i>, <em>
  • Underline text: <u>
  • Strike-through text: <s>
  • Line breaks: <br>
  • Hyperlinks: <a href>
  • Font color: <font color="color">
  • Font size: <font size="value">
  • Ordered lists: <ol>, <li>
  • Unordered lists: <ul>, <li>

Example:

#html
<b>Bold Text</b>
<i>Italic Text</i>
<u>Underlined Text</u>
<a href="http://example.com">Link Text</a>
<ul>
  <li>Item 1</li>
  <li>Item 2</li>
</ul>

These tags can be used within expressions in SSRS textboxes to format the content.

Benefits of Using Coding Filters in Software Development!

Using coding filters brings numerous benefits to software development, such as improved code maintainability, easier debugging, and better performance. By isolating specific logic or conditions, developers can minimize the risk of errors and make their code more modular, readable, and adaptable to changes.

Author

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *