RowFilter on a DataTable to display in a gridview

拜拜、爱过 提交于 2020-01-03 16:30:40

问题


I have the following code which doesn't seem to work. In the Page_Load function I populate the DataSet and display the results in a grid view.

newsCommand = new SqlCommand("SQL code here", dbConnection);
newsDataSet = new DataSet();
newsDataAdapter = new SqlDataAdapter(newsCommand);
newsDataAdapter.SelectCommand = newsCommand;
newsDataAdapter.Fill(newsDataSet, "Bulletins");

if (!Page.IsPostBack)
{
    GridViewMain.DataSource = newsDataSet;
    GridViewMain.DataBind();
}

I have some links which call this function to filter the data (yearID is passed as a parameter):

DataTable newsTable = new DataTable();
newsTable = newsDataSet.Tables[0];

DataView dvData = new DataView(newsTable);
dvData.RowFilter = "Year > '" +  yearID + "'";

GridViewMain.DataSource = dvData;
GridViewMain.DataBind();

Yet the gridview shows the data it orignally loaded, and not the filtered data. The only thing I can think of is that I'm not using the DataTable in the Page_Load function. What else am I missing?

Thanks,

Adrian


回答1:


Changed the code in the function to:

DataView dataView = newsDataSet.Tables[0].DefaultView;
dataView.RowFilter = "NewsDate2 Like '%" + yearID + "'";

GridViewMain.DataSource = dataView;
GridViewMain.DataBind();

It must have been something in the RowFilter statement.




回答2:


Filter data from DataTable and display it in Gridview.

        string category = ddlcat.SelectedItem.Value; // this can be any input by user
        DataTable dt = filter_dt; //filter_dt is DataTable object, contains actual data, from there we will filter
        DataView dataView = dt.DefaultView;
        if (!string.IsNullOrEmpty(category))
        {
            dataView.RowFilter = "Category = '" + category + "'";
        }
        Gridview1.DataSource = dataView;
        Gridview1.DataBind();

If any doubt,feel free to ask.

Thank you



来源:https://stackoverflow.com/questions/3449954/rowfilter-on-a-datatable-to-display-in-a-gridview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!