FineUI/FineUI.Examples/grid/grid_paging_aspnet.aspx.cs

47 lines
996 B
C#
Raw Normal View History

2016-01-10 01:19:30 -05:00
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
namespace FineUI.Examples.grid
{
public partial class grid_paging_aspnet : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindGrid();
}
Grid1.PageIndexChanging += Grid1_PageIndexChanging;
}
#region LoadData
private void BindGrid()
{
DataTable table = DataSourceUtil.GetDataTable2();
Grid1.DataSource = table;
Grid1.DataBind();
}
#endregion
#region Events
protected void Grid1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
2017-09-05 10:49:48 +08:00
//Grid1.PageIndex = e.NewPageIndex;
2016-01-10 01:19:30 -05:00
BindGrid();
}
#endregion
}
}