DynamicControl.HtmlEncode Property

Definition

Gets or sets a value that indicates whether the data for the control is HTML-encoded before rendering.

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 the data for the control is HTML-encoded before rendering; 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