1、新建解决方案,并建立四个项目BLL,DAL,Model,PagerTest,如图所示:

Ajax+Asp.Net无刷新分页

2、Model代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Model
{
    public class Person
    {
        /// <summary>
        /// 编号
        /// </summary>
        public int Id { get; set; }

        /// <summary>
        /// 名字
        /// </summary>
        public string Name { get; set; }
    }
}
View Code

相关文章:

  • 2021-06-12
  • 2021-06-22
  • 2021-10-08
  • 2021-10-29
  • 2022-01-12
  • 2021-03-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2022-12-23
相关资源
相似解决方案