Hi there,
I have a session variable that stores a recordset.
I want to refer this at the client side. Is this possible?
The code is something is as below. I create the recordset when the ASP page loads. When the user clicks on the LoadALL button, I want to refer to the session variable that contains the recordset.
<%
.
.
.
.
Session("Recset".CursorType = 3
Session("Recset".CursorLocation = 3
Session("Recset".Open strSQL,objConn,3,1,1
%>
SUB LoadAll_OnClick
ADC.SourceRecordset = <%=Session("Recset"%>
END SUB
Thanx in advance for any help.
TP
I have a session variable that stores a recordset.
I want to refer this at the client side. Is this possible?
The code is something is as below. I create the recordset when the ASP page loads. When the user clicks on the LoadALL button, I want to refer to the session variable that contains the recordset.
<%
.
.
.
.
Session("Recset".CursorType = 3
Session("Recset".CursorLocation = 3
Session("Recset".Open strSQL,objConn,3,1,1
%>
SUB LoadAll_OnClick
ADC.SourceRecordset = <%=Session("Recset"%>
END SUB
Thanx in advance for any help.
TP