problem with validation

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

hey

asp.net 2.0

I have a textbox on my webpage. This textbox get validated by a
RegularExpressionValidator with this ValidationExpression: \d{3}

I want this textbox to accept numbers with up to 3 digits length, so I guess
\d{3}is wrong.

The users will enter their age into the textbox

Do you have a suggestion for ValidationExpression I should use?

Jeff
 
I want this textbox to accept numbers with up to 3 digits length,
so I guess \d{3}is wrong.

Do you have a suggestion for ValidationExpression I should use?

\d{0,3}
 
Back
Top