我的查询是,我的表单中有一个 html 组合框,我想将组合框的选定项的值传递给服务器端,它是一个 aspx 页面,
<form method="POST" action="page.aspx">
<input id="customerName" name="customerName" type="Text" />
<input id="customerPhone" name="customerPhone" type="Text" />
<select id="combobox" >
<option>df</option>
<option>as</option>
</select>
<input
</form>
value="Save" type="Submit" />
在服务器端,我使用以下一组代码来选择文本框值
string n = String.Format("{0}", Request.Form['customerName']);
但是如何获取组合框选定值的值请帮助我提前谢谢