I have been looking at some code I have been given to work on and there are several multi-line dropdown boxes like this:
<select name="strListPA" size="3">
<%=strPA%>
</select>
where strPA is a variable that contains the html for building all the options (this works fine).
My problem is that the dropdown values are not being passed through on the form. I tried removing the size="3"
from the dropdown and then the form value was passed through!
Does anyone know why the form values would not be passed through on a multi-line dropdown? I need to find a way round this because this display format has already been decided upon.
Thanks in advance for your help!