All Functions
IsArray Function
IsDate Function
IsEmpty Function
IsNull Function
IsNumeric Function
IsObject Function
VarType Function
FUNCTION: TypeName( )
TypeName
(Varname)
The
TypeName
function is used to determine the subtype of a named variable.
There is a companion function
VarType
that returns the subtype number in place of the subtype name.
The output is the name of the subtype.
Code:
<% whatsubtype="This is a string subtype" %>
<% =TypeName(whatsubtype) %>
Output:
String
Code:
<% whatsubtype=12345 %>
<% =TypeName(whatsubtype) %>
Output:
Integer
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information