TypeName
The TypeName function returns the type of an object a variable has been set to.
It returns a string which indicates what type of object the
variable references if the variables has been Set to an object.
Dim dDate Dim oHash dDate = Now() Response.Write "TypeName = " & TypeName(dDate) & "<BR>" Set oHash = Server.CreateObject("Scripting.Dictionary") Response.Write "Hash Type = " & TypeName(oHash)
|
 |

|