Array()
Function returns an array
Expression Array(list)
Allow data types: characters and numbers
Example:
<%Dim myArray()For i = 1 to 7Redim Preserve myArray(i)myArray(i) = WeekdayName(i)Next%>
Return result: An array containing 7 elements is created.
myArray("Sunday","Monday",......"Saturday")
CInt()
Functions convert an expression into a numeric type
Expression CInt(expression)
Allowed data type: Any valid character can
Example:
<%f = "234" response.write cINT(f) + 2%>