about Required Field validator

arun_mrk

Well-known member
Joined
Apr 1, 2003
Messages
51
Location
beijing
I want required field validator control to fire(display errortext) immediately when the focus move from the control. In my web page it fires only on the click of submit button.
How to get it right?
 
You could set the controls autopostback property to true - however this would involve extra browser -> server roundtrips.

If the browser supports scripting it should work by default, check the property settings of the validator to see if EnableClientScript is true.

(I think those are the correct property names - not at a PC with VS installed. They are definately similar if not exact)
 
Back
Top