Validation Controls in .NET

  • Thread starter Thread starter aroraamit81
  • Start date Start date
A

aroraamit81

I have a problem with the display part of validators in .net.
I have my page in which the layout of the fields dont give me enough
space to display the error messages on the page itself.

I want individual error alert messages to be dispalyed for each of my
fields The validation controls dont have any properties to have this.
Can anyone suggest me an option?
 
I want individual error alert messages to be dispalyed for each of my
fields The validation controls dont have any properties to have this.
Can anyone suggest me an option?

You can use the "Text" property on the required field validator. I use this
on mine, I place some literal HTML code in there to display a warning image,
but to test it quickly, just put an asterisk in there or something. I tend
not to use the error summary sections.

HTH

Regards

Rob
 
Back
Top