Home
Search
Tell a Friend
ABS() Array() ASC() CHR() CInt() CStr() Date() DateAdd() DateDiff() DatePart() DateSerial() DateValue() Day() Fix() FormatCurrency() FormatDateTime() FormatNumber() FormatPercent() Hour() InStr() InStrRev() Int() IsArray() IsDate() IsEmpty() IsNull() IsNumeric() IsObject() Join() LBound() LCase() Left() Len() LTrim() Mid() Minute() Month() MonthName() Now() Replace() RGB() Right() Rnd() Round() RTrim() Second() Space() Split() Sqr() strComp() String() StrReverse() Time() TimeSerial() TimeValue() TypeName() UBound() UCase() VarType() WeekDay() WeekDayName() Year()
|
UBound() Purpose:Returns the largest available subscipt for a dimension of an array. DataType:Integer Syntax: Ubound(arrayname [, dimension]) Arguments: "arrayname" is an array;
"dimension" (optional) is a number indicating the dimension to find the upper bound Sample: i = Array("Monday","Tuesday","Wednesday")
response.write UBound(i) Result: 2 Date Added: 1/9/2001
|