ASPxGridBehaviorSettings.EncodeErrorHtml Property
SECURITY NOTE
Disabling this property may introduce security-related issues. Review the following help topic and learn how to protect websites from cross-site scripting (XSS) attacks: HTML Encoding.
Gets or sets whether to encode error row content.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.
ASPxGridView
If the EncodeErrorHtml property is set to true
, the error row content that contains HTML code is parsed so that any angle bracket (the characters < and >) of HTML tags is converted to specific symbols (< and >) when the grid renders its row errors. This allows the HTML code to be represented on the page as text:
If this property is set to false
, the row errors that contain HTML tags are not specifically parsed and are rendered as pure HTML markup. This allows the result of the HTML code to be displayed in the grid:
Related Links
ASPxCardView
If the EncodeErrorHtml property is set to true
, a card error text that contain HTML code is parsed so that any angle bracket (the characters < and >) is converted to specific symbols (< and >) when the grid renders its card errors. This allows the HTML code to be represented on the page as text.
If this property is set to false
, the card errors that contain HTML tags are not specifically parsed and are rendered as pure HTML markup. This allows the result of the HTML code to be displayed in the grid.
Related Links
ASPxVerticalGrid
If the EncodeErrorHtml property is set to true
, a record error text that contain HTML code is parsed so that any angle bracket (the characters < and >) is converted to specific symbols (< and >) when the grid renders its record errors. This allows the HTML code to be represented on the page as text.
If this property is set to false
, the record errors that contain HTML tags are not specifically parsed and are rendered as pure HTML markup. This allows the result of the HTML code to be displayed in the grid.
Related Links
Note
The EncodeErrorHtml property has effect only for GridErrorTextKind.RowValidate errors.