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()
|
TypeName() Purpose:Returns a type value DataType:String Syntax:TypeName(varname) Arguments:"varname" can be anything. Sample: i = 123.45
response.write TypeName(i) & " "
k = "Hi"
response.write TypeName(k) & " "
Set con = Server.CreateObject("ADODB.Connection")
response.write TypeName(con) Result: Double
String
Connection Date Added: 1/9/2001
|