IsNumeric function not working correctly

alsbtain

New Member
I have very strange problem with IsNumeric function in classic asp fail. Something like this happens in my code:\[code\]Response.write Score // 79.617Response.write IsNumeric(Score) // falseResponse.write IsNumeric("79.617") // true\[/code\]Has anyone had an idea why this could happen?In the specifications it is said that the functions works with strings that can be converted into numbers, and from the example above you can see i get "true" result. But what can then cause my issue?
 
Back
Top