博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自定义分页控件,修改自AspNetForums.Controls.Pager
阅读量:5252 次
发布时间:2019-06-14

本文共 562 字,大约阅读时间需要 1 分钟。

    闲着没什么事情 见AspNetForums.Controls.Pager做得不错 就拿来改改 使得更通用一些
    并加上了一个设计器
    感谢为AspNetForums做出贡献的所有人 是你们的劳动让我的coding生活充满了乐趣.
    源代码行数不少 可从这里  设计器可以从这里 .
    有什么问题请指教~
    效果截图:
   
pager.JPG
    演示代码:
None.gif
private
 
void
 Bind_rptItem( 
int
 year, 
int
 month )
ExpandedBlockStart.gif
{
InBlock.gif            
int totalCount;
InBlock.gif            
this.postPager.PageSize = 10;
InBlock.gif            DataTable dtPosts 
= Post.GetPostsByYearMonth( year, month, this.postPager.CurrentPageIndex, this.postPager.PageSize, 
                                                    out totalCount  );
InBlock.gif            
this.postPager.TotalRecords = totalCount;
InBlock.gif
InBlock.gif            
this.rptPosts.DataSource = dtPosts;
InBlock.gif            
this.rptPosts.DataBind(  );            
ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/ofei/archive/2006/02/02/324862.html

你可能感兴趣的文章