I am working on classic Asp, I want to send the value selected in drop down to another form through query string. I tried as below:
<FORM method="POST" action="Includes/bfl_forms.asp?type=S&id="&rsStates("UID")>
and like this but didn't work out
<FORM method="POST" action="Includes/bfl_forms.asp?type=S&id="&dest.options[dest.selectedIndex].value>
but the way I am populating drop down by as below :
private sub generateStateDropDownList()`
    temp = ""`
    temp = temp + "<SELECT NAME=""dest"">"   `
    temp = temp + "<option value=""#"">Select a State"`
    rsStates.MoveFirst`
    Do While NOT rsStates.EOF`
        temp = temp + "</SELECT>"'`
I am unable to pass the drop down value to new form. Please assist me. Thanks in advance.
 
     
    