2015-05-19 14:45:47 +08: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_pageitems_pagesize : PageBase
|
|
|
|
|
{
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!IsPostBack)
|
|
|
|
|
{
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
|
|
|
|
ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region LoadData
|
|
|
|
|
|
|
|
|
|
private void BindGrid()
|
|
|
|
|
{
|
|
|
|
|
ViewState["UseDataSource1"] = true;
|
|
|
|
|
|
2016-01-10 01:19:30 -05:00
|
|
|
|
DataTable table = DataSourceUtil.GetDataTable();
|
2015-05-19 14:45:47 +08:00
|
|
|
|
|
|
|
|
|
Grid1.DataSource = table;
|
|
|
|
|
Grid1.DataBind();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Events
|
|
|
|
|
|
|
|
|
|
protected void Button2_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
DataTable table;
|
|
|
|
|
if (Convert.ToBoolean(ViewState["UseDataSource1"]))
|
|
|
|
|
{
|
|
|
|
|
ViewState["UseDataSource1"] = false;
|
2016-01-10 01:19:30 -05:00
|
|
|
|
table = DataSourceUtil.GetDataTable2();
|
2015-05-19 14:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ViewState["UseDataSource1"] = true;
|
2016-01-10 01:19:30 -05:00
|
|
|
|
table = DataSourceUtil.GetDataTable();
|
2015-05-19 14:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Grid1.DataSource = table;
|
|
|
|
|
Grid1.DataBind();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Button1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
labResult.Text = HowManyRowsAreSelected(Grid1);
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-10 01:19:30 -05:00
|
|
|
|
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
2015-05-19 14:45:47 +08:00
|
|
|
|
{
|
|
|
|
|
Grid1.PageIndex = e.NewPageIndex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
|
|
|
|
|
|
|
|
|
//// 更改每页显示数目时,防止 PageIndex 越界
|
|
|
|
|
//if (Grid1.PageIndex > Grid1.PageCount - 1)
|
|
|
|
|
//{
|
|
|
|
|
// Grid1.PageIndex = Grid1.PageCount - 1;
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|