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()
|
CInt() Purpose:Converts a numeric expression to an integer. DataType:Integer Syntax:Cint(number) Arguments:"number" is any valid number Sample: response.write CInt(-97.54) Result: -98 Comments:There is a range limitation for this function: -32,768 to 32,767. If any number beyond this range is passed as argument, run-time error "Overflow" will occur. User INT() function instead. Date Added: 1/9/2001
|