当值设置为null时,我有一个包含各种项目的下拉框我想使用控制参数选择多个项目来填充数据源,如下所示。 这个Select Command无法工作,任何人都可以帮我看看我在做错误的做法吗?编辑下面的代码现在是正确的和功能.....
<asp:DropDownList ID="FilterList1" runat="server">
<asp:ListItem Selected="True" Value=" ">Produce</asp:ListItem>
<asp:ListItem>Fruits</asp:ListItem>
<asp:ListItem>Vegetables</asp:ListItem>
<asp:ListItem>Milk</asp:ListItem>
<asp:ListItem>Pop</asp:ListItem>
</asp:DropDownList>
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
DataFile="~/AFOLDER/db1.mdb"
SelectCommand="SELECT * FROM [Table1] WHERE IIF( (@Food1 =' '), [Food] In ('Fruit','Vegetable'), (Food =@Food1) )">
<SelectParameters>
<asp:ControlParameter ControlID="FilterList1" Name="Food1"
PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:AccessDataSource>
答案 0 :(得分:0)
当您使用AccessDataSource1
时,请尝试访问SQL IIF()
语句,例如:
SelectCommand="SELECT * FROM [Table1] WHERE (Service =@Service1) OR IIF((@Service1 =' '), IIF( [Service] In ('In Service','Out of Service'), True, False), False)
另外,请确保使用正确的语法@Service1 =' '
(可能是@Service1 =''
?)
希望这会有所帮助。
此致