システムを使用しています。
System.Collections.Generic を使用;
System.Linq を使用;
System.Web を使用;
System.Text を使用;
System.Data を使用します。
名前空間 EShop.Web.Admin.tool.Reserver
{
///
/// ListBuyBatchManage の要約要旨
/// public class ListBuyBatchManage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
文字列 str = string.Empty;
if (context.Request["pageIndex"] != null && context.Request["pageIndex"].ToString().Length > 0)
{
int pageIndex; // 具体的なページ数
int.TryParse(context.Request["pageIndex"], out pageIndex);
if(context.Request["pageSize"]!=null&&context.Request["pageSize"].ToString().Length > 0)
{
//页面显示条数
intサイズ = Convert.ToInt32(context.Request["pageSize"]);
文字列データ= BindSource(size,pageIndex);
context.Response.Write(データ);
context.Response.End();
}
}
}
#region 無刷新分页
public string BindSource(int pagesize,int page)
{
BLL.TbGoods bll=new BLL.TbGoods( );
DataSet ds = bll.GetListByPage("Status='" (int)Enum.RecordStatus.Normal "'", "", pagesize * ページ 1, pagesize * (ページ 1));
StringBuilder sb = new StringBuilder();
if (ds!=null)
{
foreach (ds.Tables[0].Rows の DataRow 行)
{
sb.Append("
sb.Append(row["GoodsUid"]); sb.Append(" | "); sb.Append(row["グッズ名"]); sb.Append(" | ");
}
}
return sb.ToString();
}
#endregion
public bool IsReusable
{
get
{
return false;
}
}
}
}
6.效果图
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31