求教用户控件DropDownList实现分页跳转?

我页面上有<asp:DropDownListID="DropDownList1"runat="server"Width="100px"></asp:DropDownLis... 我页面上有<asp:DropDownList ID="DropDownList1" runat="server" Width="100px">
</asp:DropDownList> , public void BangDingDDL()
{
DataSet ds = tbll.GetAllList(); //加载所有页数
DropDownList1.DataSource = ds;

int pageall = int.Parse(ViewState["PageCount"].ToString()) - 1;
this.DropDownList1.Items.Clear();
for (int i = 1; i <= pageall; i++)
{
ListItem myli = new ListItem(i.ToString(), i.ToString());
myli.Enabled = true;
this.DropDownList1.Items.Add(myli);
}
this.DropDownList1.Enabled = true;
this.DropDownList1.AutoPostBack = true;
}
不知道怎么获得最大的页数? 谢谢,请指教!分数不高。
展开
 我来答
zly0304302
2012-01-05 · TA获得超过2462个赞
知道小有建树答主
回答量:744
采纳率:0%
帮助的人:606万
展开全部
int pageall = int.Parse(ViewState["PageCount"].ToString()) - 1;
这个就是最大页数吧
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式