|
|
@@ -101,7 +101,7 @@ public class rpt : IHttpHandler, IReadOnlySessionState
|
|
|
{
|
|
|
page = Convert.ToInt32(context.Request["page"].ToString());
|
|
|
}
|
|
|
- int rows = HttpContext.Current.Request["rows"] is object ? Convert.ToInt32(HttpContext.Current.Request["rows"]) : 4;
|
|
|
+ int rows = HttpContext.Current.Request["rows"] is object ? Convert.ToInt32(HttpContext.Current.Request["rows"]) : 3;
|
|
|
//获取分页数据
|
|
|
int total = 0;
|
|
|
DataTable dt = conn.SelectPages(page, rows, out total, sqlStr1);
|