Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of asp.netmvc Custom pager Encapsulation and Optimization

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

In this issue, the editor will bring you an example analysis of asp.netmvc custom pager encapsulation and optimization. The article is rich in content and analyzed and described from a professional point of view. I hope you can get something after reading this article.

HtmlHelper Pager extension

Pager V1.0:

/ Pager V1.0 / HtmlHelper / paging information / public static MvcHtmlString Pager (this HtmlHelper helper, PagerModel pager) {StringBuilder sbHtmlText = new StringBuilder (); sbHtmlText.Append (""); if (pager.PageIndex = pager.PageCount) {sbHtmlText.Append ("»");} else {sbHtmlText.AppendFormat ("{0}", pager.PageIndex + 1) SbHtmlText.AppendFormat ("»", pager.PageIndex + 1);} sbHtmlText.Append ("); sbHtmlText.AppendFormat (" {0} data per page, a total of {1} pages, a total of {2} data ", pager.PageSize, pager.PageCount, pager.TotalCount); return MvcHtmlString.Create (sbHtmlText.ToString ());}

Pager V2.0

/ Pager V2.0 / HtmlHelper / pagination information / paging event / public static MvcHtmlString Pager (this HtmlHelper helper, PagerModel pager, Func onPageChange) {StringBuilder sbHtmlText = new StringBuilder (); sbHtmlText.Append ("); if (pager.PageIndex = pager.PageCount) {sbHtmlText.Append (" »") } else {sbHtmlText.AppendFormat ("{1}", onPageChange (pager.PageIndex + 1), pager.PageIndex + 1); sbHtmlText.AppendFormat ("»", onPageChange (pager.PageIndex + 1));} sbHtmlText.Append ("); sbHtmlText.AppendFormat (" {0} data per page, a total of {1} pages, a total of {2} data ", pager.PageSize, pager.PageCount, pager.TotalCount) Return MvcHtmlString.Create (sbHtmlText.ToString ());}

Pager V3.0

/ Pager V3.0 / HtmlHelper / paging information / paging address or event / pagination view name / paging display mode / public static MvcHtmlString Pager (this HtmlHelper helper, PagerModel pager, Func onPageChange, string pagerViewName, PagingDisplayMode displayMode = PagingDisplayMode.Always) {pager.OnPageChange = onPageChange; pager.PagingDisplayMode = displayMode Return MvcHtmlString.Create (helper.Partial (pagerViewName, pager). ToHtmlString ();}

Summary

Pager V1.0 paging style and page flipping events all need to modify the CSharp code if you want to modify it.

Pager V2.0 can customize the paging event, but you still need to modify the CSharp code to change the paging style.

Pager V3.0 can modify the page flip event or address and paging style in a custom paging view

End

Now that the project MvcSimplePager is packaged into Nuget http://www.nuget.org/packages/MvcSimplePager/, you can search for MvcSimplePager in the nuget package manager in VS to use it.

Customize the MvcSimplePager project and sample code: https://github.com/WeihanLi/MvcSimplePager, you can customize it as needed.

The above is the example of asp.netmvc custom pager encapsulation and optimization shared by Xiaobian. If you happen to have similar doubts, you might as well refer to the above analysis to understand. If you want to know more about it, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report