I have set up a client page and a server page. I can access them both directly without errors. (had some at first, couldn't find include file, & etc.) Now I think everything is working right but I can't figure out how to get the value of the recordset back to the calling page. The client page is .asp and not .htm because I fill the first combo box on Window_OnLoad.
To get the recordset the code goes something like:
Do Until rs.EOF = True
EngMake = rs.Fields("blah blah"
rs.MoveNext
Loop
I can use response.Write on the asp page and get all of the values so I think that part is working. I just can't figure out how to get the EngMake to the calling page and added to the combo box. Rob
Just my $.02.
To get the recordset the code goes something like:
Do Until rs.EOF = True
EngMake = rs.Fields("blah blah"
rs.MoveNext
Loop
I can use response.Write on the asp page and get all of the values so I think that part is working. I just can't figure out how to get the EngMake to the calling page and added to the combo box. Rob
Just my $.02.