DynamicField.HtmlEncode Property

Definition

Gets or sets a value that indicates whether data field values are HTML-encoded before they are displayed in a DynamicField object.

public:
 property bool HtmlEncode { bool get(); void set(bool value); };
public bool HtmlEncode { get; set; }
member this.HtmlEncode : bool with get, set
Public Property HtmlEncode As Boolean

Property Value

true if field values are HTML-encoded before they are displayed; otherwise, false. The default is true.

Remarks

Use the HtmlEncode property to specify whether field values are HTML-encoded to their respective string representations before they are displayed.

Note

HTML-encoding field values helps to prevent cross-site scripting attacks and malicious content from being displayed. This property should be enabled whenever possible. For more information, see Script Exploits Overview.

Applies to

See also