|
sending dropdown list value as form parameter
here is a sample code where iam trying to send a dropdown list value as form parameter
<table>
<tr>
<TD>REGION</TD>
<TD>
<!--<select name="Region">
<option value="URL">113</option>
<option value="URL">137</option>
</select> -->
<input type="text" name="Region">
</td>
<td>
<input type = "submit" value = "Generate Report">
</td>
</tr>
</table>
in the above code if comment select part and use text box, the second page is taking the parameter when i say 'param.region'. But when i use select and
use the same param.region second page is not taking the value. it instead takes it as 'url'. can anybody tell me how ia can send a dropdown value as form parameter
thanks
|