Renders a element containing page links
Namespace:
RainWorx.FrameWorx.MVC.HelpersAssembly: RainWorx.FrameWorx.MVC (in RainWorx.FrameWorx.MVC.dll) Version: 3.5
Syntax
C#
public static void RenderPageNumberLinks( this HtmlHelper htmlHelper, int currentPage, int totalPages, string actionName, string controllerName, Object routeValues, Object htmlAttributes, Object containerHtmlAttribs )
Parameters
- htmlHelper
- Type: HtmlHelper
an instance of the HtmlHelper class - currentPage
- Type: SystemInt32
0-based index of the page currently being viewed - totalPages
- Type: SystemInt32
the total number of pages available - actionName
- Type: SystemString
the name of the MVC action to be used for the page links - controllerName
- Type: SystemString
the name of the MVC controller to be used for the page links - routeValues
- Type: SystemObject
An object that contains the route values to be used for each page link element. - htmlAttributes
- Type: SystemObject
An object that contains the HTML attributes to set for each page link element. - containerHtmlAttribs
- Type: SystemObject
An object that contains the HTML attributes to set for the container element.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also