HtmlAnchor.CausesValidation 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 indicating whether validation is performed when the HtmlAnchor control is clicked.
public:
virtual property bool CausesValidation { bool get(); void set(bool value); };
public virtual bool CausesValidation { get; set; }
member this.CausesValidation : bool with get, set
Public Overridable Property CausesValidation As Boolean
Property Value
true
if validation is performed when the HtmlAnchor is clicked; otherwise, false
. The default is true
.
Remarks
By default, page validation is performed when an HtmlAnchor control is clicked. Page validation determines whether controls that are associated with a validation control on the page all pass the validation rules that are specified by the validation control.
You can specify or determine whether validation is performed on both the client and the server when an HtmlAnchor control is clicked by using the CausesValidation property. To prevent validation from being performed, set the CausesValidation property to false.