If I run some SQL to generate a recordset within a called function, how can I return the recordset back to the calling function/procedure?
Example:
--------------------------------------
<%
Dim recordset
GetRecordset recordset 'calling procedure
'would like to be able to manipulate "recordset" here
%>
<%
Private Function GetRecordset()
'Called Function
'...something to create a recordset
End Function
%>
Example:
--------------------------------------
<%
Dim recordset
GetRecordset recordset 'calling procedure
'would like to be able to manipulate "recordset" here
%>
<%
Private Function GetRecordset()
'Called Function
'...something to create a recordset
End Function
%>