eWebProgrammer
Distributednetworks GofPatterns
prev prev
  Course navigation
   
ASP constants and variables
Data-type testing functions
  1. tbaIsArray (expression)
  2. IsDate (expression)
  3. IsEmpty (expression)
  4. IsNull (expression)
  5. IsNumeric (expression)
  6. IsObject (expression)
  7. VarType (expression)
The data being tested (inside the parentheses) can be any expression or variable.
These functions typically return the values True or False, although the function VarType can return any of a number of values (shown below).

Expression:A combination of variables, constants, and operators that produces a value.
0 Empty (uninitialized) variable
Uninitialized [variable value]: A variable that has no value assigned to it.
1 Null (no valid data)
2 Integer
3 Long Integer
4 Single-precision floating-point number
5 Double-precision floating point number
6 Currency
7 Date
8 String
9 Automation object
10 Error
11 Boolean
12 Variant (used only with arrays of Variants)
13 Non-Automation object
17 Byte
8192 Array
XML DOM Element Type Constants 
(from file ActionPageUtil.asp): 
Constants to use as values for the CreateNode method 
of the XMLDOM. 
Constants: 

NODE_ELEMENT, NODE_ATTRIBUTE, NODE_TEXT, 
NODE_CDATA_SECTION, NODE_ENTITY_REFERENCE, NODE_ENTITY, 
NODE_PROCESSING_INSTRUCTION, NODE_COMMENT, NODE_DOCUMENT, 
NODE_DOCUMENT_TYPE, NODE_DOCUMENT_FRAGMENT, NODE_NOTATION 
  Course navigation