I'm trying to use javascript to change a string to an int.
var intVal = gSpread1.Text * 1;
I want intVal's Type to be int.
I can get an int value, if gSpread1.Text is smaller than 1000.
But if gSpread1.Text is larger than 1000, intVal returns NaN
What is the correct way to use ParseInt to ensure that it always returns an int value?
NaN... – CMS Feb 24 '10 at 0:56