mvcpager之学习
2021-06-09 22:03
标签:nat sed cti targe next style cPage 分享 using 一、项目中必须引用MVCpager.dll,现在是3.0版本。 二、添加页面view.Model 三、控制器代码,也是默认页面index 四、index页面cshtml,这是第一视图,获取model,同时传给VolumeMvcpagerTree.cshtml 五、局部视图,将主页index的Model解析,绑定数据,用户呈现,主要是要把Mvcpager的分页html.help搞定 mvcpager之学习 标签:nat sed cti targe next style cPage 分享 using 原文地址:http://www.cnblogs.com/cqstars/p/7298337.htmlnamespace Model.ViewModel
{
public class VolumeTree
{
public int VolumeID { get; set; }
public string VolumeName{ get; set; }
public List
public ActionResult index(int? id = 1)
{
// List
@model PagedListModel.ViewModel.VolumeTree>
@using Webdiyer.WebControls.Mvc;
@{
ViewBag.Title = "index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
div>
h2>管理h2>
div id="MVCpager">
@Html.Partial("VolumeMvcpagerTree", Model)
div>
div>
@model PagedList
@if (Model != null)
{
foreach (var item in Model)
{
@if (Model != null)
{
@if (item != null)
{
foreach (var Sub in item.SubsectionS)
{