I want to validate string containing only numbers. Easy validation? I added RegularExpressionValidator, with ValidationExpression=\"/d+\".
Looks okay - but nothing
Try using ^\d+$ to force the digits to fill the entire line. ^ = line start $ = line end