noninterleaved
Senior member
I am trying to put together a form that contains a multiple selection. What I have is something like
<select name="mult_select" multiple size=3>
<option>Opt1
<option>Opt2
<option>Opt3
</select>
however, when it gets sent to the server (either GET or POST) only the first selection gets sent. I have verified this by looking at the GET QueryString. It reads like
my_app.asp?mult_select=Opt1&
even if I have all of the options selected. Anyone know a way to do this? I have searched all over the web and no help...
<select name="mult_select" multiple size=3>
<option>Opt1
<option>Opt2
<option>Opt3
</select>
however, when it gets sent to the server (either GET or POST) only the first selection gets sent. I have verified this by looking at the GET QueryString. It reads like
my_app.asp?mult_select=Opt1&
even if I have all of the options selected. Anyone know a way to do this? I have searched all over the web and no help...