Range Validator
-
Hi all, I have a very basic doubt in validator controls.I have to get the input for User Name ranging for min 6 to max 50 .How can i use range validator to chek the above condition.
Go 4 MSDN, http://msdn.microsoft.com/en-us/library/f70d09xt.aspx[^] :-D
Arun Jacob http://codepronet.blogspot.com/
-
Hi all, I have a very basic doubt in validator controls.I have to get the input for User Name ranging for min 6 to max 50 .How can i use range validator to chek the above condition.
anu_anu wrote:
User Name ranging for min 6 to max 50 .
User Name or Length of the user name?
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
anu_anu wrote:
User Name ranging for min 6 to max 50 .
User Name or Length of the user name?
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
You can rather use a regular expression validator. This expression may be a good point to start.
^\d{6,50}$
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.