D David C Apr 20, 2007 #1 Is there a way to check a control for a whole number? e.g. 43.5 is bad but 43 is ok? Using VS2005 and Net 2.0 Thanks. David
Is there a way to check a control for a whole number? e.g. 43.5 is bad but 43 is ok? Using VS2005 and Net 2.0 Thanks. David
R Riki Apr 20, 2007 #2 David said: Is there a way to check a control for a whole number? e.g. 43.5 is bad but 43 is ok? Using VS2005 and Net 2.0 Thanks. David Click to expand... Use a regularexpressionvalidator with the expression ^\d*$
David said: Is there a way to check a control for a whole number? e.g. 43.5 is bad but 43 is ok? Using VS2005 and Net 2.0 Thanks. David Click to expand... Use a regularexpressionvalidator with the expression ^\d*$
M Mark Rae Apr 20, 2007 #4 Wow. I would have never guessed that. Thanks. Click to expand... What if someome types in "000000001" - is that OK...?
Wow. I would have never guessed that. Thanks. Click to expand... What if someome types in "000000001" - is that OK...?
D David C Apr 20, 2007 #5 Yes. It will go into the database as 1. David Mark Rae said: What if someome types in "000000001" - is that OK...? Click to expand...
Yes. It will go into the database as 1. David Mark Rae said: What if someome types in "000000001" - is that OK...? Click to expand...