MvcPaging 2.0.1
See the version list below for details.
dotnet add package MvcPaging --version 2.0.1
NuGet\Install-Package MvcPaging -Version 2.0.1
<PackageReference Include="MvcPaging" Version="2.0.1" />
paket add MvcPaging --version 2.0.1
#r "nuget: MvcPaging, 2.0.1"
// Install MvcPaging as a Cake Addin #addin nuget:?package=MvcPaging&version=2.0.1 // Install MvcPaging as a Cake Tool #tool nuget:?package=MvcPaging&version=2.0.1
A Paging library for ASP.NET MVC.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on MvcPaging:
Package | Downloads |
---|---|
MvcPaging.ObjectMapper
IObjectMapper implementation for MvcPaging's IPagedList and AutoMapper |
|
EnterpriseDAAB.Extensions
1.EnterpriseDAAB 擴充 |
|
Actya
Actya is a simple ASP.NET MVC CMS that can be added to an existing .NET application. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.13 | 85,124 | 5/8/2019 |
2.1.12 | 20,885 | 11/13/2018 |
2.1.11 | 23,025 | 5/8/2018 |
2.1.10 | 5,062 | 3/11/2018 |
2.1.9 | 3,815 | 2/8/2018 |
2.1.8 | 45,812 | 6/25/2017 |
2.1.7 | 65,403 | 6/17/2016 |
2.1.6 | 5,190 | 5/27/2016 |
2.1.5 | 2,779 | 5/19/2016 |
2.1.4 | 23,361 | 1/15/2016 |
2.1.2 | 92,211 | 11/17/2014 |
2.1.1 | 50,493 | 7/29/2014 |
2.1.0 | 32,185 | 1/22/2014 |
2.0.6 | 3,336 | 12/12/2013 |
2.0.5 | 7,509 | 10/17/2013 |
2.0.4 | 18,722 | 5/20/2013 |
2.0.3 | 35,797 | 6/22/2012 |
2.0.2 | 5,942 | 4/27/2012 |
2.0.1 | 4,316 | 4/20/2012 |
1.0.3 | 5,288 | 3/22/2012 |
1.0.2 | 4,254 | 12/7/2011 |
1.0.1 | 2,937 | 8/17/2011 |
1.0.0 | 6,076 | 5/12/2011 |
- Refactored and simplified Html.Pager helper. The number of overloads is
drastically reduced. Optional parameters are added via a Fluent interface.
- Introduced PaginationModel and optional DisplayTemplate for more display
flexibility (https://github.com/martijnboland/MvcPaging/pull/6), thanks Rajeesh C V!
- Added MaxNrOfPages option (https://github.com/martijnboland/MvcPaging/pull/4)
- BREAKING CHANGE: Html.Pager overloads with actionName and routeValues have been
removed. Use the Options method:
Html.Pager(pageSize, pageNumber, totalItemCount).Options(o => o.Action("ActionName"))
- BREAKING CHANGE: the Ajax.Pager helper is removed. For AJAX scenarios use the
Html.Pager(pageSize, pageNumber, totalItemCount, ajaxOptions) overload