I know this is doable, but I've just looking at the code for far too long I think.
I have this code :
<td>
<select name="Category">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
</select>
</td>
but whenever I submit the form and query the value like this :
Response.Write "CatID:" & request.form("Category")
I *always* get 1
, regardless of what option I chose.
What am I doing wrong ?