.net validation controls

Soldato
Joined
18 Oct 2002
Posts
4,925
Location
Yorkshire
Got some filed required validation controls on a number of fields this will display an * if the field is left blank.

What i;m also wanting to do is at the end have one label / message that says something like "Fields (*) are required". The one way I can seem to do this is using the valiationsummary control but this also prints out a summary of all the fields in the group so it'll print loads of **** as well.

any ideas ?
 
So there's no way with the standard controls to do the following

Firstname: [ ] (* here is missed)
Surname: [ ] (* here is missed)
(message here saying "Fields marked with * are required")



UPDATE
----------
Just a little update, managed tp sort it, for the individual text box validations I was using the '*' in the error text , this needed moving to the text property. that way the summary control will only display the header text as the individual controls arn't supplying it any eror text messages to display.
 
Last edited:
Back
Top Bottom