bootStrap分页组件bootStrapPager

BottStrap分页组件bootStrapPager下载地址:http://www.jq22.com/jquery-info1753

控制器

 

public class HomeController : Controller
{
    public ActionResult Index()
    {
        BaseDbContent db = new BaseDbContent();
        ViewBag.count = db.location.Count(); // 获取数据的总条数
        return View();
    }

    public JsonResult GetIndexData(int currPage, int pageSize)
    {
        BaseDbContent db = new BaseDbContent();
        var list = db.location.OrderBy(r => r.locId).Skip((currPage - 1) * pageSize).Take(pageSize).ToList();
        return Json(list);
    }
}

 

 

 

视图

 



    
    BottStrap分页组件bootStrapPager测试
    
    
    
    
    

    
        
编号名称父编号

 

 

 

 

 

 

 

你可能感兴趣的:(分页,BootStrap)