DynamicField.HtmlEncode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.