Asp.net Datapager使用updatepanel时不刷新

时间:2017-06-30 15:06:15

标签: c# asp.net listview updatepanel

我使用过ListView topopulate产品。我的列表视图位于更新面板内。现在,当我使用datapager进入第二页时,它会转到第二页,但数据夹不会刷新。如果我点击第二页,那么第一页按钮会突出显示。

.aspx的

vue-loader

1 个答案:

答案 0 :(得分:0)

OnPagePropertiesChanging内可能有错误。很难说,因为代码丢失了,但看起来应该是这样的。

protected void OnPagePropertiesChanging(object sender, PagePropertiesChangingEventArgs e)
{
    //get the correct page info from the datapager
    (products.FindControl("DataPager1") as DataPager).SetPageProperties(e.StartRowIndex, e.MaximumRows, false);

    //reload data and rebind the listview
    products.DataSource = mySource;
    products.DataBind();
}