Ejemplo n.º 1
0
 public static MvcHtmlString PrevNextForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, object routevalues, string pageInfoFormat, bool isShowFirstLast)
 {
     return(HtmlHelperExtensions._pagerBuilderPrevNext(source, index, list, actionName, routevalues, "<", ">", "<<", ">>", true, isShowFirstLast, pageInfoFormat, "{0} - {1} ({2})"));
 }
Ejemplo n.º 2
0
 public static MvcHtmlString PrevNextForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, object routevalues, string prevText, string nextText, string firstText, string lastText, bool isShowInfo, string pagerCss)
 {
     return(HtmlHelperExtensions._pagerBuilderPrevNext(source, index, list, actionName, routevalues, prevText, nextText, firstText, lastText, isShowInfo, true, pagerCss, "{0} - {1} ({2})"));
 }