.net 分页问题
/* #region 分页
int pageSize = 20;
int start = 0;
string field, asc_desc;
if (string.IsNullOrEmpty(Request["sort"]))
{
field = "ID";
asc_desc = "asc";
}
else
{
field = Request["sort"];
asc_desc = Request["dir"];
}
if (!string.IsNullOrEmpty(Request["limit"]))
{
pageSize = int.Parse(Request["limit"]);
start = int.Parse(Request["start"]);
}
#endregion*/
谁能给我讲讲这个分页的代码大概什么意思呢??谢谢了~