ASP.NET ValidationGroup Property
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 »
|
Complete ListControl Control Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|