Hi
I have a combo box as follows, where name is what shows and ID and email are hidden.
<p><font face="Arial" size="2">Select your Name <select name = "reqname">
<option value="" select>Name</option>
<%Do While Not rsname.EOF
Response.Write ("<OPTION value="& rsname("id"
&">" & rsname("email"
& rsname("name"
& "</OPTION>"
rsname.MoveNext
Loop
rsname.Close
set rsname= Nothing %>
</select>
</font>
after the update of this combo-box I'd like to populate a text-box, named reqemail with the email address, taken from the value of the rsname("email"
field from the combo-box
how can i do this please?
thanks in anticipation!!!
kim
I have a combo box as follows, where name is what shows and ID and email are hidden.
<p><font face="Arial" size="2">Select your Name <select name = "reqname">
<option value="" select>Name</option>
<%Do While Not rsname.EOF
Response.Write ("<OPTION value="& rsname("id"
rsname.MoveNext
Loop
rsname.Close
set rsname= Nothing %>
</select>
</font>
after the update of this combo-box I'd like to populate a text-box, named reqemail with the email address, taken from the value of the rsname("email"
how can i do this please?
thanks in anticipation!!!
kim