I have set paginantion using jquery and c# but i have face a issue not render number .

This is my code
@{
var prevDisabled = Model.IsFirstPage() ? "disabled" : "";
var nextDisabled = Model.IsLastPage() ? "disabled" : "";
}
This is my result .I have click next button then change number 1 to 2 to 3 to 4 etc.
I want to render this

-This is genrate using plugin .
Sachin SinghPosted Jun 18, 2021, 10:49 AM