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()
|
Array() Purpose:Returns an Array DataType:Array Syntax:Array(List) Arguments:"list" is a comma-delimited list of values to add to the array. Sample: Dim X
X = Array("Paul","Mike","Tom")
response.write X(2) Result: Array index always starts with "0" by default. So the total elements in an array would be UBOUND(ArrayName) + 1 Date Added: 1/9/2001
|