使用easyui可以很方便的开发web程序,这儿仅展示一个后台使用mvc来实现分页的示例,截图如下 示例代码如下 1. 创建模型类,代码如下 using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace EasyuiDemo.Models { public class Student { public int ID { get; set; } public string…