0

我的查询是,我的表单中有一个 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']);

但是如何获取组合框选定值的值请帮助我提前谢谢

4

1 回答 1

1

您可以尝试修复您的html:

<form method="POST" action="page.aspx">
    <input id="customerName" name="customerName" type="text">
    <input id="customerPhone" name="customerPhone" type="text">
    <select id="combobox" name="combobox">
        <option value="df">df</option>
        <option value="as">as</option>
    </select>
    <input value="Save" type="submit">
</form>

所选值将发布为Request.Form['combobox']

于 2012-06-28T07:31:03.450 回答