21. IsObject()
FUNCTION: Returns a boolean value indicating whether an expression refers to an automation object.
SYNTAX: IsObject(expression)
ARGUMENTS: expression is any valid expression.
EXAMPLE: <%
Set con = Server.CreateObject("ADODB.Connection")
response.write IsObject(con)
%
RESULT: True
-------------------------------------
22. LBound()
FUNCTION: Returns the base index value for a dimension of any array.
SYNTAX: Lbound(arrayname [, dimension])
ARGUMENTS: arrayname...[ 查看全文 ]