单单gridview可以分页,但是在contentplaceholder中不能分页怎么解决啊,请教各位帮帮忙!
没用母板时gridview1可以实现分页,但是grivdview1放入contentplaceholder1中就不能实现分页了,点击页码没反应我试了:
ContentPlaceHolder c = (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");
GridView tt = (GridView )c.FindControl("GridView1");
tt.PageIndex = e.NewPageIndex;
或this.GridView1.PageIndex = e.NewPageIndex;都不能实现分页。
补充:.NET技术 , ASP.NET