asp.net.ph

ImageButton.CausesValidation Property

System.Web.UI.WebControls Namespace   ImageButton Class


Sets or retrieves a value indicating whether validation is performed when the ImageButton control is clicked.

Syntax


Inline <asp:imagebutton causesvalidation [ = true | false ] ... >
Script ImageButton.CausesValidation [ = true | false ]

Property Value

This property accepts or returns only a boolean value: true if validation is performed when the ImageButton control is clicked; otherwise, false. Default value is true.

Remarks

By default, page validation is performed when an ImageButton control is clicked. Page validation determines whether the input controls associated with a validation control on the page all pass the validation rules specified by the validation control.

You can specify or determine whether validation is performed on both the client and the server when an ImageButton control is clicked by using the CausesValidation property. To prevent validation from being performed, set the CausesValidation property to false.

This property is commonly used to prevent page validation from occurring when a Cancel or Reset imagebutton is clicked.

Example

<asp:imagebutton commandname = "update" runat = "server"
   text = "Update" />
<asp:imagebutton commandname = "cancel" runat = "server"
   text = "Cancel" causesvalidation=false />

 Show me 

See Also

ImageButton Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph