W3Schools.com

ASP.NET ValidationGroup Property


ListControl Control Reference Complete ListControl Control Reference

Definition and Usage

The ValidationGroup property specifies which group of controls are validated on validation.

This property is mostly used when there are several buttons in a form.

Syntax

<asp:SomeListControl ValidationGroup="group" runat="server" />

Attribute Description
group The validation group to validate.


Example

The following example validates the specific validation group:

<form runat="server">
<asp:RadioButtonList id="rb1"
ValidationGroup="valGroup1" runat="server">
  <asp:ListItem Value="Item 1" />
  <asp:ListItem Value="Item 2" />
</asp:RadioButtonList>

<asp:RequiredFieldValidator id="ReqField1"
ControlToValidate="rb1" ErrorMessage="Required"
ValidationGroup="ValGroup1" runat="server" />
<asp:Button id="Bt1" Text="Validate"
CausesValidation="True" ValidationGroup="ValGroup1"
runat="server" />
</form>

Show example »

ListControl Control Reference Complete ListControl Control Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE