function_exists()
PHPに相当する関数がASPに存在しますか?
に相当するものはcall_user_func()
どうですか?
あなたはトリックでこれを行うことができます:
public function getFunction(functionName)
set getFunction = nothing
on error resume next
set getFunction = getRef(functionName)
on error goto 0
end function
dim func : set func = getFunction("myFunction")
if not func is nothing then
' call "myFunction"
func
else
' "myFunction" does not exist
end if