asp.net gridview 分页问题
现在想要实现页面上有一个下拉框,是控制分页的页数,下拉框选择一个分页数目,gridview就按照这个分页数分页。
请问大侠们有什么方法。
public void DataBingGridView() //数据绑定
{
//get time parameters
string date1 = CommonMethod.ConvertToStr(txtBeginDate.Text);
string date2 = CommonMethod.ConvertToStr(txtEndDate.Text);
//get cashflow method and has parameters
DataTable dt = BLL.CashFlow.GetFullCashData(date1, date2).Tables[0];
//DataTable dt = BLL.CashFlow.GetFullCashData().Tables[0];
PagedDataSource pds = new PagedDataSource();
pds.DataSource = dt.DefaultView;
//paging
pds.AllowPaging = true;
pds.PageSize = 25;// 这个是控制分页数目的,就是想让其是动态可以设置的
PageControl1.DataSource = pds;
//bind data
GroupedGridView1.DataSource = pds;
GroupedGridView1.DataBind();
}
请问有什么好的解决方案
[最优解释]
/// <summary>
/// 分页
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GvProduct_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GvProduct.PageIndex = e.NewPageIndex;
_DataBind();
//执行Go
TextBox txtGoPageNum = (TextBox)GvProduct.BottomPagerRow.FindControl("txtGoPageNum");
txtGoPageNum.Text = (GvProduct.PageIndex + 1).ToString();
}
/// <summary>
/// 执行行命令
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void GvProduct_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Go")
{
try
{
TextBox txtGoPageNum = (TextBox)GvProduct.BottomPagerRow.FindControl("txtGoPageNum");//底部导航命令
int newPageIndex = Int32.Parse(txtGoPageNum.Text.Trim());
GridViewPageEventArgs gvpe = new GridViewPageEventArgs(newPageIndex - 1);
GvProduct_PageIndexChanging(null, gvpe);//重新分页
}
catch { }
}
}
[其他解释]
pds.PageSize=dropdownlist1.selectValue;
[其他解释]
public int getNum()
{
int aaa =0;
switch (int.Parse(ddlName1.SelectedItem.Value))
{
case 1: { aaa=XXX; break; }
case 2: { aaa=XXX; break; }
case 3: { aaa=XXX; break; }
}
return aaa;
}
//调用就行了
pds.PageSize =getNum();
[其他解释]
谢谢,1楼2楼。1、我用的是客户端的 <select id="pagenum" name="pagenum">
<option selected value="25">25页 </option>
<option value="50">50页 </option>
<option value="100">100页 </option>
</select>
怎样取值,而且我要的效果是选择显示页数后,gridview分页数据就改成选择数目。这种效果怎么做?
[其他解释]
Gv 加上
<PagerTemplate>
<br />
<asp:Label ID="lblPage" runat="server" Text='<%# "第" + (((GridView)Container.NamingContainer).PageIndex + 1) + "页/共" + (((GridView)Container.NamingContainer).PageCount) + "页" %> '></asp:Label>
<asp:LinkButton ID="lbnFirst" runat="Server" Text="首页" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>'
CommandName="Page" CommandArgument="First"></asp:LinkButton>
<asp:LinkButton ID="lbnPrev" runat="server" Text="上一页" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>'
CommandName="Page" CommandArgument="Prev"></asp:LinkButton>
<asp:LinkButton ID="lbnNext" runat="Server" Text="下一页" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != (((GridView)Container.NamingContainer).PageCount - 1) %>'
CommandName="Page" CommandArgument="Next"></asp:LinkButton>
<asp:LinkButton ID="lbnLast" runat="Server" Text="尾页" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != (((GridView)Container.NamingContainer).PageCount - 1) %>'
CommandName="Page" CommandArgument="Last"></asp:LinkButton>
转到第<asp:TextBox runat="server" ID="txtGoPageNum" Width="30px"></asp:TextBox>页
<asp:Button ID="btnGo" CommandName="Go" runat="server" Text="Go" />
<br />
</PagerTemplate>
[其他解释]
我解决了,用的是dropdownlist控件下的选择事件,在选择事件中调用查询按钮事件,就可以了。
但是我想用“<select id="pagenum" name="pagenum">”html控件,该怎么搞。
[其他解释]
null