burningblue8
Programmer
Blast those pesky option boxes.
This error appears when I try and populate the contents of a drop down box from one of the fields in my DB:
"Item cannot be found in the collection corresponding to the requested name or ordinal."
******** code************
while not rs.EOF
Response.Write "<option value = " & rs.fields(4).value & ">"
rs.movenext
wend
********************
and I'm getting this message back when I re-fresh the page.
I know the problem lies within the response.write statement, but cant figure out why it doesnt populate the box with the data from the selected field.
Help!!!
This error appears when I try and populate the contents of a drop down box from one of the fields in my DB:
"Item cannot be found in the collection corresponding to the requested name or ordinal."
******** code************
while not rs.EOF
Response.Write "<option value = " & rs.fields(4).value & ">"
rs.movenext
wend
********************
and I'm getting this message back when I re-fresh the page.
I know the problem lies within the response.write statement, but cant figure out why it doesnt populate the box with the data from the selected field.
Help!!!