Validate text box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a text box. It's input should be integer. I want to validate this
text box so that it's value should be integer. What validation control
shouuld I use.

Thanks
 
Hi Bobby,

You can use required field validatior
and
a compare validator in this case
and set controltovalidate = yourtextboxname
type=integer
operator=datetypecheck for comparevalidator
 
Back
Top