pagedlist

    0熱度

    1回答

    我正在ASP.Net Mvc3中開發Web調查應用程序。我在我的應用程序中使用PagedList來單獨分頁問題頁面。 我得到以下錯誤: The model item passed into the dictionary is of type 'PagedList.PagedList`1[SWSSMVC.Models.ViewModels.QuestionViewModel]', but thi

    0熱度

    2回答

    我在我的頁面上有pagedlist,它允許5頁以www.example.com/viewing?1 ... 2 ... 3的格式查看結果結果5,我檢查我是哪個網頁上做 @if (Model.article.PageNumber == 1) { } 然後 @if (Model.article.PageNumber == 2) { } 一路5 ..有一個更好的辦法在這裏做的是這樣的代碼

    0熱度

    2回答

    我正在構建一個MVC應用程序,它將在屏幕上顯示一些數據。我可能最終擁有數百甚至數千數據。 所以我使用了一個PagedList格式以下這個教程: http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-framework-in-an-

    1熱度

    1回答

    我在我的MVC頁面上使用Troy Goode的PagedList擴展。它通過呈現包含給定頁面的記錄的部分工作正常。 現在我必須實現搜索結果的過濾。我使用AJAX表單來獲取與給定搜索條件匹配的部分包含結果。如果結果少於一頁,這很有效。如果篩選結果超出一頁,則存在問題。當點擊分頁鏈接時,過濾信息消失,並導致未過濾信息的下一頁。 當輸入內容來過濾搜索結果並且存在分頁鏈接時,我可以使用什麼機制來傳遞過濾信

    41熱度

    4回答

    我一直在嘗試使用PagedList包來獲取我的索引視圖的分頁。一切進展順利,在控制器層面,一切工作正常,每頁只顯示5條記錄,並根據查詢字符串顯示適當的頁面。 我的問題是在視圖中。我將@Model更改爲PagedList.IPagedList,因此我可以訪問Model.HasNextPage和其他屬性,但現在@Html.DisplayNameFor(model => model.ItemName)不

    0熱度

    1回答

    這是我的倉庫層: public List<Section> GetAllSections() { return context.Sections.Include("Groups").Include("Groups.Classes").ToList(); } 這是我的應用層: public List<Section> GetAllSections() { return

    0熱度

    1回答

    我有一個局部視圖,它顯示列表中的一些搜索結果。出於美學原因,我在每行顯示結果兩個列表項: list item 1 | list item 2 list item 3 |列表項4 等.... 我實現分頁與PagedList,並且因爲它是一個局部視圖我使用Ajax.ActionLink s到瀏覽每個「分頁列表」。例如: @Ajax.ActionLink("<<", "GetAllProperties"

    0熱度

    1回答

    我有一個MVC視圖,我正在做一些數據分頁,使用PagedList組件。我的JavaScript的支持,這看起來如下: $(function() { var getPage = function() { var $a = $(this); var options = { url: $a.attr("href"), type: "get

    3熱度

    1回答

    我有以下型號: public class PagedClientViewModel { public int? Page { get; set; } public PagedList.PagedList<ClientViewModel> Clients { get; set; } public bool ShowAllClients { get;

    0熱度

    5回答

    我使用EF的DbContext類SqlQuery獲得使用PagedList(https://github.com/TroyGoode/PagedList)分頁對象列表包含的,我得到了以下錯誤: 「SqlParameter有已經被載另一個SqlParameterCollection」 這裏是我的倉庫代碼: var db = (DbContext)DataContext; const st