我正在使用SharePoint 2007从SQL服务器显示查询结果,而没有太多问题。除非我想使用条件查询,否则我无法做到。
我想在页面上使用下拉列表,以便用户选择将查询限制在哪个“机器”,“班次”和“日期”。
所以查询看起来像这样:
select * from shiftReports
where
machine = 'results from drop down list A' and
shift = 'results from drop down list B' and
date = 'results from drop down calendar'
如何将下拉列表结果链接到查询?
编辑:
当前查询如下所示
SelectCommand="select *
from dbo.abm_downtime
where machine = 'abm5' " __designer:customcommand="true">
我的下拉列表看起来像这样
<asp:DropDownList runat="server" id="DropDownList1" DataValueField="shift" DataTextField="shift" DataSourceID="SqlDataSource1">
</asp:DropDownList>
有什么办法可以在查询中使用下拉列表的结果吗?