国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

GridView分頁代碼簡單萬能實用

2024-07-10 13:23:20
字體:
來源:轉載
供稿:網友

復制代碼 代碼如下:


<asp:GridView runat="server" AutoGenerateColumns="False"
CssClass="vip_table" GridLines="None" BorderStyle="None" CellPadding="0"
ShowHeader="False" AllowPaging="true" PageSize="20"
onpageindexchanging="GridViewHistory_PageIndexChanging">
<PagerTemplate>
<asp:LinkButton runat="server">首頁</asp:LinkButton>
<asp:LinkButton runat="server"
onclick="lb_previouspage_Click">上一頁</asp:LinkButton>
<asp:LinkButton runat="server">下一頁</asp:LinkButton>
<asp:LinkButton runat="server">尾頁</asp:LinkButton>
第<asp:Label runat="server" Text="<%#GridViewHistory.PageIndex+1 %>" ForeColor="#db530f"></asp:Label>頁/共<asp:Label
ID="lbl_totalpage" runat="server" Text="<%#GridViewHistory.PageCount %>" ForeColor="#db530f"></asp:Label>頁
</PagerTemplate>



后臺代碼:

復制代碼 代碼如下:


//分頁
protected void GridViewHistory_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridViewHistory.PageIndex = e.NewPageIndex;
dataBinding();
}
protected void Button_search_Click(object sender, EventArgs e)
{
dataBinding();
}
protected void lb_firstpage_Click(object sender, EventArgs e)
{
this.GridViewHistory.PageIndex = 0;
dataBinding();
}
protected void lb_previouspage_Click(object sender, EventArgs e)
{
if (this.GridViewHistory.PageIndex > 0)
{
this.GridViewHistory.PageIndex--;
dataBinding();
}
}
protected void lb_nextpage_Click(object sender, EventArgs e)
{
if (this.GridViewHistory.PageIndex < this.GridViewHistory.PageCount)
{
this.GridViewHistory.PageIndex++;
dataBinding();
}
}
protected void lb_lastpage_Click(object sender, EventArgs e)
{
this.GridViewHistory.PageIndex = this.GridViewHistory.PageCount;
dataBinding();
}


dataBinding()為GridViewHistory的數據源綁定事件
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 定陶县| 明水县| 民乐县| 乌兰县| 崇义县| 科技| 柘荣县| 班戈县| 田阳县| 台南县| 久治县| 涡阳县| 越西县| 巴楚县| 义乌市| 长治县| 长泰县| 龙口市| 叙永县| 开原市| 绥芬河市| 阿坝县| 集贤县| 拜泉县| 哈密市| 滨海县| 宣威市| 吴忠市| 水富县| 肃宁县| 连城县| 皋兰县| 黑山县| 三门县| 开封市| 南安市| 吉安市| 临澧县| 文登市| 枞阳县| 中山市|