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" />
|
Show example »
|
Complete LinkButton Control Reference
Stylus Studio® 2010 XML Enterprise Suite raises the bar for productivity in XML development tools.
Millions of XML developers and data integration specialists turn to Stylus Studio's comprehensive and intuitive
XML toolset to tackle today's advanced XML data transformation and aggregation challenges.
|
- XML Pipeline Editor, Debugger and Code Generator
- DataDirect XML Converters
- XQuery Mapper, Editor, Debugger, and Profiler
- XSLT Mapper, Editor, Debugger, Designer, and Profiler
- Java and C# for .Net Code Generation
- XML Schema Designer With Documentation Generator
- XML Editor With Full XPath Integration
Download a free trial now
|
|