Which validator would I use to make sure a control (textbox) has between 3 and 8 characters?
Printable View
Which validator would I use to make sure a control (textbox) has between 3 and 8 characters?
RegularExpression - ^.{3,8}$
Very cool!! Thank you :)