我正在尝试在ASP Classic中编写一个接受参数的函数;但参数可以是String,也可以是ADODB.Command对象。该函数如何确定参数的类型?
因此...
Function myfunction( input )
If is_ADODBCommand( input ) Then
' do stuff to object'
ElseIf is_string( input ) Then
' do stuff to string'
End If
End Function
基本上,请告诉我如何is_ADODBCommand
和is_string