C# MVC分页,razor,view传送model

IMVCPages

复制代码
interface IMVCPages
    {
        int GetItemsCount();

        int GetPageSize();

        int GetPagesCount();

        /// <summary>
        /// 当前页面索引,用于分页
        /// </summary>
        int CurrentPageIndex { get; set; }
    }
复制代码

View。【这里有从页面view传送Model数据到Controller的方法。】

复制代码
<div>
    查询到 @Model.GetItemsCount() 条记录,共 @Model.GetPagesCount()页。
    @using( Html.BeginForm("JieGuo", "KaiFang", FormMethod.Post, new { id = "chaxunform"}))
    {
        @Html.HiddenFor(m => m.SearchSouceModel.Name);
        @Html.TextBoxFor(m => m.CurrentPageIndex, new { @class="form-control hidden", id = "hiddenIndex" });

    <div class="btn-toolbar" role="toolbar">
        <div class="btn-group">
            <button class="btn btn-default" onclick="idToIndex(0)">首页</button>
        </div>

        <div class="btn-group">
            @for (int iPageIndex = 0; iPageIndex < Model.GetPagesCount(); iPageIndex++)
            {
                if (iPageIndex == Model.CurrentPageIndex)
                {
                    <button class="btn btn-primary disabled" id="@iPageIndex" onclick="idToIndex(this.id)">@iPageIndex</button>
                }
                else
                {
                    <button class="btn btn-default" id="@iPageIndex" onclick="idToIndex(this.id)">@iPageIndex</button>
                }
            }
        </div>

        <div class="btn-group">
            <button class="btn btn-default" onclick="idToIndex(@Model.GetPagesCount() -1)" >末页</button>
        </div>
    </div>
    }

</div>
复制代码

效果图

mvcpager

posted @   倚舟笑沧海  阅读(718)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示