FUNCTION:  IsNumeric( )

Implemented in version 1.0
 
IsNumeric(Expression)
 
The IsNumeric function determines if the expression is a number.
 
Code:
<% =IsNumeric(123.456) %>
 
Output:
True
 
Code:
<% =IsNumeric("This is a string.") %>
 
Output:
False