w3schools    w3Schools
Search :
   
HOME HTML CSS XML JAVASCRIPT ASP PHP SQL MORE...   References Examples Forum About
ADVERTISEMENTS

XML Certification
Download XML editor
Custom Programming
 
Table of contents
ASP.NET Tutorial
.NET HOME
.NET Intro
.NET vs ASP
.NET Install
.NET Pages
.NET Controls
.NET Events

ASP.NET Forms
.NET Forms
.NET ViewState
asp:TextBox
asp:Button

ASP.NET Binding
Data Binding
ArrayList
Hashtable
SortedList
XML Files
asp:Repeater
asp:DataList

ASP.NET Database
.NET DB Connection

ASP.NET 2.0
2.0 New Features
2.0 Master Pages
2.0 Navigation

References
HTML Controls
Web Controls
Validation Controls

Examples
ASP.NET Examples

Selected Reading
Web Statistics
Web Glossary
Web Hosting
Web Quality

Browse Tutorials
 

ASP.NET ValidationSummary Control


Validation Control Reference Complete Validation Control Reference

Definition and Usage

The ValidationSummary control is used to display a summary of all validation errors occurred in a Web page.

The error message displayed in this control is specified by the ErrorMessage property of each validation control. If the ErrorMessage property of the validation control is not set, no error message is displayed for that validation control.


Properties

Property Description
DisplayMode How to display the summary. Legal values are:
  • BulletList
  • List
  • SingleParagraph
EnableClientScript A Boolean value that specifies whether client-side validation is enabled or not
Enabled A Boolean value that specifies whether the validation control is enabled or not
ForeColor The fore color of the control
HeaderText A header in the ValidationSummary control
id A unique id for the control
runat Specifies that the control is a server control.  Must be set to "server"
ShowMessageBox A Boolean value that specifies whether the summary should be displayed in a message box or not
ShowSummary A Boolean value that specifies whether the ValidationSummary control should be displayed or hidden

Examples

Validationsummary
In this example we use the ValidationSummary control to write a bulleted list of fields that are required but left empty by the user.

Validationsummary 2
In this example we use the ValidationSummary control to display a message box of the fields that are required but left empty by the user.


Validation Control Reference Complete Validation Control Reference