请给个datagrid分页的实例,代码或者是链接什么的,这100分就是你的了

ketao_78 2003-12-01 11:57:30
谢谢
...全文
42 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
ketao_78 2003-12-03
  • 打赏
  • 举报
回复
谢谢
rock1981 2003-12-01
  • 打赏
  • 举报
回复
参考:
http://www.csdn.net/develop/Read_Article.asp?Id=18627



public void Submit_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
string keywordCustCode=txtCustCode.Text.ToString();

string selectStatement = " SELECT * FROM cust where CUST_CODE like '%" + keywordCustCode + "%' ";
theOffice.components.ModulesPublic cust = new theOffice.components.ModulesPublic();
DataSet ds=cust.GetData(selectStatement);
this.dgCust.DataSource = ds.Tables["Cust"].DefaultView;
this.dgCust.DataBind();
Session["table"] = ds.Tables["Cust"].DefaultView;//保存数据
}

void dgCust_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
{
if (Session["table"] != null) {
dgCust.CurrentPageIndex=e.NewPageIndex;
dgCust.DataSource = Session["table"];//取得查询数据。
this.dgCust.DataBind();
}
}


用Session解决,具体看上面的代码和注释。
konglord 2003-12-01
  • 打赏
  • 举报
回复
private void DataGridList_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
{
DataGridList.DataSource=ds;//ds is a datatable
DataGridList.CurrentPageIndex = e.NewPageIndex;
DataGridList.DataBind();
}
liuvb 2003-12-01
  • 打赏
  • 举报
回复
顶,看看有没有好的,简单的方法。
TomLi98011 2003-12-01
  • 打赏
  • 举报
回复
http://www.msdn.microsoft.com/library/default.asp?url=/msdnmag/issues/01/10/cutting/toc.asp
Build a Variety of Custom Controls Based on the DataGrid Control
srj911 2003-12-01
  • 打赏
  • 举报
回复
不敢在关公面前武大刀
ponycsdn 2003-12-01
  • 打赏
  • 举报
回复
应该把ShowStartsPage()放到DepArticleCatalogueDataBind()里面,我疏忽了。
ponycsdn 2003-12-01
  • 打赏
  • 举报
回复
这个怎么样,首页,下一页,上一页,末叶。添数字直接到指定页,datagrid自己分页。
private void DepArticleCatalogueDataBind()
{
ArticleQuery departmentArticleGet = new ArticleQuery();
dgDepArticleCatalogue.DataSource = departmentArticleGet.GetDepartmentArticle(Convert.ToInt16(Request["DepartmentID"]));
dgDepArticleCatalogue.DataBind();

Editiones AllEditionGet = new Editiones();
dgEditiones.DataSource = AllEditionGet.GetAllEditiones();
dgEditiones.DataBind();
}

// 显示第几页、共几页
private void ShowStartsPage()
{
pageCount.Text = Convert.ToString(dgDepArticleCatalogue.PageCount);
pageNumber.Text = Convert.ToString(dgDepArticleCatalogue.CurrentPageIndex+1);
}

private void first_Click(object sender, System.EventArgs e)
{
dgDepArticleCatalogue.CurrentPageIndex = 0;
DepArticleCatalogueDataBind();
}

private void next_Click(object sender, System.EventArgs e)
{
if (dgDepArticleCatalogue.CurrentPageIndex < dgDepArticleCatalogue.PageCount -1)
{
dgDepArticleCatalogue.CurrentPageIndex++;
DepArticleCatalogueDataBind();
}
}

private void prev_Click(object sender, System.EventArgs e)
{
if (dgDepArticleCatalogue.CurrentPageIndex > 0)
{
dgDepArticleCatalogue.CurrentPageIndex--;
DepArticleCatalogueDataBind();
}
}

private void last_Click(object sender, System.EventArgs e)
{
dgDepArticleCatalogue.CurrentPageIndex = dgDepArticleCatalogue.PageCount-1;
DepArticleCatalogueDataBind();
}

private void gotoPage_Click(object sender, System.EventArgs e)
{
try
{
int pageNumber = Convert.ToInt16(pageNum.Text)-1;
if (pageNumber >= 0 && pageNumber < dgDepArticleCatalogue.PageCount)
{
dgDepArticleCatalogue.CurrentPageIndex = pageNumber;
}
DepArticleCatalogueDataBind();
}
catch
{
pageNum.Text = "输入错误";
}
}

private void dgDepArticleCatalogue_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
{
dgDepArticleCatalogue.CurrentPageIndex = e.NewPageIndex;
DepArticleCatalogueDataBind();
}
}
kenny 2003-12-01
  • 打赏
  • 举报
回复
關鍵是:DataGrid.CurrentPageIndex = e.NewPageIndex
gshope 2003-12-01
  • 打赏
  • 举报
回复
DataGrid支持自动分页,设置一下,三行代码就搞定了。
private void DataGrid1_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
{
DataGrid1.CurrentPageIndex =e.NewPageIndex ;
DataGrid1.DataSource=((DataSet)ho.Search((String)ViewState["sql"])).Tables["search"].DefaultView;
DataGrid1.DataBind();
}
acewang 2003-12-01
  • 打赏
  • 举报
回复
转孟子:
一个功能齐全的DataGrid分页例子
作者: 孟宪会 出自: 【孟宪会之精彩世界】 发布日期: 2003-5-11 23:35:53
--------------------------------------------------------------------------------

下面的这个例子提供了DataGrid的分页功能。aspx代码和Cohe Behind代码分别如下,注意更改数据录连接字符串。结果如下:



DataGridPaging.aspx

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="DataGridPaging.aspx.vb" Inherits="DataGridPaging"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" runat="server">
<asp:datagrid id="MyDataGrid" runat="server" AlternatingItemStyle-BackColor="#eeeeee"
HeaderStyle-BackColor="#aaaadd" Font-Size="8pt" Font-Name="Verdana" CellSpacing="0"
CellPadding="3" GridLines="Both" BorderWidth="1" BorderColor="black"
OnPageIndexChanged="MyDataGrid_Page" PagerStyle-HorizontalAlign="Right"
PagerStyle-Mode="NumericPages" PageSize="5" AllowPaging="True">
<AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>
<HeaderStyle BackColor="#AAAADD"></HeaderStyle>
<PagerStyle HorizontalAlign="Right" Mode="NumericPages"></PagerStyle>
</asp:datagrid>
<p style="font-size:9pt">
<asp:label id="lblPageCount" runat="server"></asp:label> 
<asp:label id="lblCurrentIndex" runat="server"></asp:label>
<asp:linkbutton id="btnFirst" onclick="PagerButtonClick" runat="server"
Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="0">
</asp:linkbutton> 
<asp:linkbutton id="btnPrev" onclick="PagerButtonClick" runat="server"
Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="prev">
</asp:linkbutton> 
<asp:linkbutton id="btnNext" onclick="PagerButtonClick" runat="server"
Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="next">
</asp:linkbutton> 
<asp:linkbutton id="btnLast" onclick="PagerButtonClick" runat="server"
Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="last">
</asp:linkbutton>
</p>
</form>
</body>
</HTML>

DataGridPaging.aspx.vb

Imports System.Data.SqlClient
Imports System.Data
Imports System.Web.UI

Public Class DataGridPaging
Inherits System.Web.UI.Page

Protected WithEvents MyDataGrid As System.Web.UI.WebControls.DataGrid
Protected WithEvents btnFirst As System.Web.UI.WebControls.LinkButton
Protected WithEvents btnPrev As System.Web.UI.WebControls.LinkButton
Protected WithEvents btnNext As System.Web.UI.WebControls.LinkButton
Protected WithEvents btnLast As System.Web.UI.WebControls.LinkButton
Protected WithEvents lblCurrentIndex As System.Web.UI.WebControls.Label
Protected WithEvents lblPageCount As System.Web.UI.WebControls.Label
Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object,_
ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object,_
ByVal e As System.EventArgs) Handles MyBase.Load
btnFirst.Text = "最首页"
btnPrev.Text = "前一页"
btnNext.Text = "下一页"
btnLast.Text = "最后页"
OpenDatabase()
BindGrid()
End Sub


Sub MyDataGrid_Page(ByVal sender As Object, ByVal e As DataGridPageChangedEventArgs)
Dim startIndex As Integer
startIndex = MyDataGrid.CurrentPageIndex * MyDataGrid.PageSize
MyDataGrid.CurrentPageIndex = e.NewPageIndex
BindGrid()
ShowStats()
End Sub

Sub BindGrid()
Dim myConnection As SqlConnection = cn
Dim ds As DataSet = New DataSet()
Dim adapter As SqlDataAdapter = New SqlDataAdapter("Select * from Orders", myConnection)
adapter.Fill(ds, "Orders")
MyDataGrid.DataSource = ds.Tables("Orders").DefaultView
MyDataGrid.DataBind()
ShowStats()

End Sub

Sub PagerButtonClick(ByVal sender As Object, ByVal e As EventArgs)
'used by external paging UI
Dim arg As String = sender.CommandArgument

Select Case arg
Case "next"
If (MyDataGrid.CurrentPageIndex < (MyDataGrid.PageCount - 1)) Then
MyDataGrid.CurrentPageIndex += 1
End If
Case "prev"
If (MyDataGrid.CurrentPageIndex > 0) Then
MyDataGrid.CurrentPageIndex -= 1
End If
Case "last"
MyDataGrid.CurrentPageIndex = (MyDataGrid.PageCount - 1)
Case Else
'page number
MyDataGrid.CurrentPageIndex = System.Convert.ToInt32(arg)
End Select
BindGrid()
ShowStats()
End Sub

Sub ShowStats()
lblCurrentIndex.Text = "第 " + (MyDataGrid.CurrentPageIndex + 1).ToString() + " 页"
lblPageCount.Text = "总共 " + MyDataGrid.PageCount.ToString() + " 页"
End Sub

Public cn As New SqlClient.SqlConnection()
Public Sub OpenDatabase()
cn.ConnectionString = "Server=.;Database=NorthWind;User Id=sa;Password=;"
cn.Open()
End Sub
End Class


62,074

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧