我有一个网格和下拉列表。我想通过选择下拉列表来过滤网格中的值。

我的代码是这样的

<asp:DropDownList ID="DDLVisitedVol" runat="server" AutoPostBack="true" DataSourceID="DsVisitedVol"
    DataTextField="VisitedVol" DataValueField="VisitedVol"
    Width="244px">
</asp:DropDownList>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString=""
    ProviderName=""
    SelectCommand="SELECT [ID],[UserName], [Email], [visitedVol] FROM [HitTracker] where visitedVol=@VisitedVol ">
    <SelectParameters>
        <asp:Parameter Name="VisitedVol" Type="String"/>
    </SelectParameters>
</asp:SqlDataSource>

如何将下拉列表的选定值传递给@VisitedVol?

最佳答案

使用控制参数:

<asp:ControlParameter ControlID="DDLVisitedVol" Name="VisitedVol" PropertyName="SelectedValue"  Type="String"/>

关于asp.net - 将下拉列表的选定值传递给参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2584633/

10-10 17:32