ASP.NET ValidationGroup Property
Complete LinkButton Control Reference
Definition and Usage
The ValidationGroup property specifies which group of control is validated on
validation.
This property is mostly used when there are several buttons in a form.
Syntax
<asp:LinkButton ValidationGroup="group" runat="server" />
|
| Attribute |
Description |
| group |
The group of controls to validate. |
Example
The following example validates the specific validation group:
<asp:TextBox id="tb1" runat=Server />
<asp:RequiredFieldValidator id="ReqField1" ControlToValidate="tb1"
ValidationGroup="valGroup1" ErrorMessage="Required" runat="server" />
<asp:LinkButton id="Button2" Text="Validate" CausesValidation="True"
ValidationGroup="valGroup2" runat="server" />
|
Try-It-Yourself Demos
Set two different validation groups in a form
Complete LinkButton Control Reference
Whether you're new to XML or already an advanced user, the user-friendly views
and powerful entry helpers, wizards, and debuggers in XMLSpy are designed to
meet your XML and Web services development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a fully functional free 30-day trial today!
|