This topic is locked
[SOLVED]

 What happened to the old ListOnLoad?

12/1/2010 12:51:58 PM
ASPRunnerPro General questions
J
JOHNF777 author

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

Sergey Kornilov admin 12/1/2010

I would suggest to move this code to BeforeProcess event of the List page.