ValidatorDisplay Enum

Definition

Specifies the display behavior of error messages in validation controls.

public enum class ValidatorDisplay
public enum ValidatorDisplay
type ValidatorDisplay = 
Public Enum ValidatorDisplay
Inheritance
ValidatorDisplay

Fields

Dynamic 2

Validator content dynamically added to the page when validation fails.

None 0

Validator content never displayed inline.

Static 1

Validator content physically part of the page layout.

Remarks

The ValidatorDisplay enumeration represents the different display behaviors of error messages in validation controls.

None specifies that you only want to display the error message in a ValidationSummary control. The error message will not display in the validation control.

Static specifies that you don't want the layout of the Web page to change when validator controls display error messages. Space on the page is allocated for the error messages when displaying the page. The validator contents are physically part of the page; therefore, multiple validators for the same input control must occupy different locations on the page.

Dynamic specifies that you want to dynamically place error messages on the Web page when validation fails. Space for the validation content is not allocated on the page; therefore, the page dynamically changes to display the error message. This allows multiple validators to share the same physical location on the page. In order to keep the page layout from changing when an error message is displayed, the HTML element containing the validator must be sized large enough to accommodate the maximum size of the validator.

Accessibility

For information about how to configure validation controls so that they generate markup that conforms to accessibility standards, see Accessibility in Visual Studio and ASP.NET and ASP.NET Controls and Accessibility.

Applies to

See also