Forum Moderators: open
Sorry for the newbie question, but...
I was wondering if there was a way to return an object (such as a recordset) in vbscript functions.
Something like:
public function returnObj
...
set someObj = Server.CreateObject("ADODB.Recordset") ' or any type of obj
...
...
returnObj = someObj
end function
is this possible?