开发者

paging an unbound gridview

开发者 https://www.devze.com 2023-03-16 15:46 出处:网络
can anyone point me to any good examples of how to page an unbound gridview? Im binding it to a LINQ search query gen开发者_开发百科erated on a buttons click event.

can anyone point me to any good examples of how to page an unbound gridview? Im binding it to a LINQ search query gen开发者_开发百科erated on a buttons click event.

thanks


got it working using

 protected void grid_PageIndexChanging1(object sender,                                          GridViewPageEventArgs e)  
  {      grid.PageIndex = e.NewPageIndex;
     grid.DataBind();  
  } 
0

精彩评论

暂无评论...
验证码 换一张
取 消