HTML String Data Type

HTML Strings contain textual data that includes HTML Markup. They are essentially the same as String values except in cases where HTML can be treated differently. For instance, when using a script to place an HTML String field into a template, the contents will be HTML instead of plain text.

Example: Assuming a value of "He said <b>WOW!</b>"; , if the data type is String and placed on the page, it will display exactly as "He said <b>WOW!</b>" (without the quotes). If the data type is HTMLString, it will display as "He said WOW!" (again, without the quotes).

Considering this is the only difference, for more information on how to create and use HTML String values, see String values.

 
  • Last Topic Update: 24/01/2017 09:32
  • Last Published: 7/6/2017 : 9:48 AM