This is a great help, I was about to dive in and start making my own!
Thank you for taking the time to share!
Sadly "page" in a route is already reserved by razor pages. (Fine for MVC)
This is a quick fix, I simply edited PaginatorTagHelper.cs by adding:
// Allows users to change the "page" verb, which ensures compatability with razor pages
[HtmlAttributeName("page-link-verb")]
public string PageVerb { get; set; } = "page";
and replacing all uses of the string "page" (except for the aria property), with PageVerb.
This is a great help, I was about to dive in and start making my own! Thank you for taking the time to share!
Sadly "page" in a route is already reserved by razor pages. (Fine for MVC)
This is a quick fix, I simply edited PaginatorTagHelper.cs by adding:
and replacing all uses of the string "page" (except for the aria property), with PageVerb.