Hi!
I have a drop down combo box that lists the numbers 1 to 12, this is done manually in the asp page. How do i get the combo box to default to the number that is passed through to the page from a query?
The combo box looks like this:
<select size="1" name="dropdown_menu" onchange="reloadParent(this.value)">
<OPTION SELECTED value="true">1
<OPTION value="true">2
<OPTION value="true">3
<OPTION value="true">4
<OPTION value="true">5
<OPTION value="true">6
<OPTION value="true">7
<OPTION value="true">8
<OPTION value="true">9
<OPTION value="true">10
<OPTION value="true">11
<OPTION value="true">12
</SELECT></td>
and the database column name (formnum) that it should take the default number from comes from the following query;
oRS = OpenDBQuery("Select * FROM dbo.vw_bdxAppSecDetails Where bindno='" + Request.QueryString("Contract"
.item)
Does anyone know how to do this?
Thanks for any help ....
Julie
I have a drop down combo box that lists the numbers 1 to 12, this is done manually in the asp page. How do i get the combo box to default to the number that is passed through to the page from a query?
The combo box looks like this:
<select size="1" name="dropdown_menu" onchange="reloadParent(this.value)">
<OPTION SELECTED value="true">1
<OPTION value="true">2
<OPTION value="true">3
<OPTION value="true">4
<OPTION value="true">5
<OPTION value="true">6
<OPTION value="true">7
<OPTION value="true">8
<OPTION value="true">9
<OPTION value="true">10
<OPTION value="true">11
<OPTION value="true">12
</SELECT></td>
and the database column name (formnum) that it should take the default number from comes from the following query;
oRS = OpenDBQuery("Select * FROM dbo.vw_bdxAppSecDetails Where bindno='" + Request.QueryString("Contract"
Does anyone know how to do this?
Thanks for any help ....
Julie