I have been using ASP.Net MVC 5 to build my web application, and for pagination purpose I followed the below tutorial.
Everything works out as expected. But my project requires the page list shown in pager to be in Bengali instead of English, depending on the culture information.
E.g. I have the following in my page
1
2
3
But I need it to be
১
২
৩
so the numbers are translated.
Is there a way to achieve that using the PagedList.MVC component I used?