My code (below) is working fine, and gives me the values I need;
but I now need to put the values in the recordset into a 'Form' item - a combobox. Then I want to use the 'POST' method to pass the user selection into another VBScript to perform a second action.
Can anyone help please?
solo7
Code:
'Loop through the recordset
'
Do While not rsPeriods.EOF
'Write the HTML to display the current record in the recordset
Response.Write ("<br>")
Response.Write (rsPeriods("Fld_Periods"))
'Move to the next record in the recordset
rsPeriods.MoveNext
Loop
but I now need to put the values in the recordset into a 'Form' item - a combobox. Then I want to use the 'POST' method to pass the user selection into another VBScript to perform a second action.
Can anyone help please?
solo7