使用SELECT查询中下拉列表中的选定项

时间:2017-05-13 20:05:38

标签: sql asp.net select drop-down-menu

我有以下代码,这是航班位置的下拉列表:

Where to:<br />
    <asp:DropDownList ID="DropDownList1" runat="server"
        DataSourceID="SqlDataSource1" 
        DataTextField="Destination" 
        DataValueField="Destination" Width="222px">
    </asp:DropDownList>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server"
        ConnectionString="<%$ ConnectionStrings:ConnectionString %>" 
        SelectCommand="SELECT [Destination] FROM [tblFlight]">
    </asp:SqlDataSource>

我希望能够使用上面下拉列表中的选定值(其中一个是Corfu)作为查询的WHERE条件,该条件仅选择前往科孚岛的航班。 有什么建议吗?

1 个答案:

答案 0 :(得分:0)

基本上是:

string dest = yourDropDown.SelectedItem; SELECT [Destination] FROM [tblFlight] WHERE [Destination] = " + dest;