我想获得下拉列表的选定值,我无法控制 runat="server"
<form id="form" action="Default.aspx" method="post">
<table>
<tbody>
<tr>
<td align="left" >
<select id="formsSelect" style="font-family: arial,sans-serif;font-size:10px;>
<%
for (int x = 0; x < forms.Count; x++)
{
%>
<option><%= forms[x].ToString() %></option>
<%
}
%>
</select>
<input type="submit" name="formType" value="Search" style="color: #000000;"/>
</td>
</tr>
</tbody>
</table>
</form>
任何帮助