I have an old ASPRunner code (5.2) and now that I've moved to Version 6.3..... it's not there anymore. What Event should I put it now?
I had it doing the following code to get the information from another table:
str = "select * from pjCustomer where CustKey=" & Session(strTableName&"_masterkey1")
Set rsTemp = server.CreateObject("ADODB.Recordset")
rsTemp.open str,dbConnection
Session("CustName") = rsTemp("CustName")
Thanks,
JohnF