0

我有一个看起来像这样的gridview:

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"  PageSize="10"
        DataKeyNames="id" 
        OnRowEditing="GridView1_RowEditing"
        OnRowCancelingEdit="GridView1_RowCancelingEdit"
        OnRowUpdating="GridView1_RowUpdating"
        OnPageIndexChanging="GridView1_PageIndexChanging"
        OnPageIndexChanged="GridView1_PageIndexChanged"
        AllowPaging="True">

工作正常。我想在 gridview 上方添加一个下拉框,作为数据库结果的过滤器:

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true">
    <asp:ListItem Value="0">Show all</asp:ListItem>
    <asp:ListItem Value="1">In queue</asp:ListItem>
    <asp:ListItem Value="2">Being worked on</asp:ListItem>
    <asp:ListItem Value="3">Complete</asp:ListItem>
    <asp:ListItem Value="4">Declined</asp:ListItem>
</asp:DropDownList>

如何让下拉菜单与 gridview 交互以相应地更新结果?请记住,gridview 已启用分页,因此单击页面时应记住下拉选项,并且还应根据页码和下拉选择记住数据库结果。

更新:

我按如下方式填充网格视图,其中 BindData 进入 Page_Load:

private void BindData()
{

    SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["connString"]);
    SqlDataAdapter da = new SqlDataAdapter(@"sql query here", con);

    DataTable dt = new DataTable();
    da.Fill(dt);

    GridView1.DataSource = dt;

    GridView1.DataBind();

}

Page_Load 看起来像这样:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        BindData();
    }
}
4

2 回答 2

1

在您的方法中,如果已选择BindData()过滤器值,则需要传递过滤器值并相应地修改 SQL。DropDownList1您可能还需要在 SQL 语句中传递请求的页码,以便可以在您的中过滤结果SELECT(取决于您如何进行分页,因为您没有说明)。

然后在你的AutoPostBack方法中DropDownList1调用BindData()

这样,每次更改下拉列表值时,它都会调用您的BindData()方法并传递任何相关的过滤器和页码以获得相关结果。

于 2013-08-13T10:31:35.437 回答
0

您可以在 DropDownList1 的 indexchnage 事件中编写以下代码

DataView dataView = dt.DefaultView;
dataView.RowFilter = "NewsDate2 = '" + DropDownList1.SelectedValue + "'";

GridView1.DataSource = dataView;
GridView1.DataBind();
于 2013-08-13T10:30:33.677 回答