我使用过ListView topopulate产品。我的列表视图位于更新面板内。现在,当我使用datapager进入第二页时,它会转到第二页,但数据夹不会刷新。如果我点击第二页,那么第一页按钮会突出显示。
.aspx的
vue-loader
答案 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();
}