
asp.net Google样式分页控件
- 大小:11KB
- 分类:asp.net其它
- 环境:asp.net
- 更新:2010-03-08
热门排行
简介
asp.net Google样式分页控件 使用方法:
引入控件
<%@ Register Assembly="TinyToolBox" Namespace="TinyMS.UI" TagPrefix="tm" %>
使用控件
<tm:TinyPager ID="TinyPager1" runat="server" TotalRecords="289" PageSize="20" onclick="TinyPager1_Click"/>
页码处理事件
protected void TinyPager1_Click(object sender, TinyMS.UI.PagerEventArgs e)
{
his.Label1.Text = "第" + e.PageNo + "页";
}
引入控件
<%@ Register Assembly="TinyToolBox" Namespace="TinyMS.UI" TagPrefix="tm" %>
使用控件
<tm:TinyPager ID="TinyPager1" runat="server" TotalRecords="289" PageSize="20" onclick="TinyPager1_Click"/>
页码处理事件
protected void TinyPager1_Click(object sender, TinyMS.UI.PagerEventArgs e)
{
his.Label1.Text = "第" + e.PageNo + "页";
}