我正在使用obout网格,我想知道obout相当于PageIndex是什么?
例如,使用Visual Studio的GridView,我会说:
if (Session["PageIndex"] != null && !string.IsNullOrEmpty(Session["PageIndex"].ToString())) Grid1.PageIndex= (int)Session["PageIndex"];
但是,obout没有名为"PageIndex“的属性。什么是等同的?
发布于 2012-01-18 00:40:21
http://www.obout.com/grid/grid_paging.aspx
http://www.obout.com/grid/doc_server_side_grid.aspx#grid_tips_paging
属性称为"CurrentPageIndex“。
通过以下方式更改页面:
http://www.obout.com/grid/grid_paging_client.aspx
https://stackoverflow.com/questions/8897878
复制相似问题