我有以下代码,这是航班位置的下拉列表:
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条件,该条件仅选择前往科孚岛的航班。 有什么建议吗?
答案 0 :(得分:0)
基本上是:
string dest = yourDropDown.SelectedItem;
SELECT [Destination] FROM [tblFlight] WHERE [Destination] = " + dest;