Hi, bit desperate for this,
I have selected all records from a table and based on this returned recordset I want to populate 2 drop down boxes (one after the other - using the onchange event), I don't want to have to send the page to the server every time I want to populate a drop down - so...
how do I query the returned recordset from the client side?
The code which setup my recordset is below, how would I query this once the recordset has been returned?
SQL_CntAreaDropDwn = "SELECT * FROM tblContactManagementreasoncodes"
Set RS2 = MyConn.Execute(SQL_CntAreaDropDwn)
MANY THANKS - very much appreciated..