How can i set a session to one of my recordset..?
PAGE 1
- Code: Select all
<%
Address = <%addressRecordset%>
Session ("address")= Address
%>
In the next page i want to display the value...
PAGE 2
- Code: Select all
<%response.write Session ("address")%>
i know this code does not working,
i just want to show what is my idea,
can anybody help me?