Hi,
I want to disable Paging in MVC WebGrid? Paging is present by default in WebGrid, so how can I disable Paging in MVC Web Grid ASP.Net?
Wherever you declare there you can set the canPage property to False.
@{ Layout = null; WebGrid webGrid = new WebGrid(source: Model, canPage: false); }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.