<%--
--%>
<%# Eval("Status") %>
<%-- --%>
<%-- --%>
<%-- --%>
for the above code im getting gridview paging like below

but when i use the same code for another webform im not getting gridview paging
and my code is
<%-- --%>
and im getting like this

Satyaprakash SamantarayPosted Dec 19, 2023, 8:00 AM
Hi,
Please try below in GridView ID="CreditcardPaymentview section
If still not works then go to inspect element in chrome browser of that .aspx page and check the issue in console section.
Check the AllowPaging="true" in .aspx and also check OnPageIndexChanging vaue in .aspx.cs page
Check below link for details
https://www.aspdotnet-suresh.com/2015/04/paging-in-aspnet-gridview-using-pageindexchanging-event-with-example-using-csharp-vbnet.html
Jignesh KumarPosted Dec 19, 2023, 4:59 AM
Hello Jaya prakash,
Please check this area,
You need to change pagersetting in your LogiGridView,
Jaya PrakashPosted Dec 18, 2023, 5:50 AM
Even though i changed it to "true" im only getting pageno only 1 and not getting other pages 2,3,4 as marked in pic sir i have plenty of records

Jayraj ChhayaPosted Dec 18, 2023, 5:42 AM
Hi Jaya Prakash,
Please allow "
AllowPaging"property in LoginGrdView because is false that's why pagination is not working.If you allow after then pagination is working properly.
Jaya PrakashPosted Dec 18, 2023, 5:38 AM
hi sir thank you for ur reply ,
here im getting paging in
CreditcardPaymentviewbut not getting in LoginGrdView can u even though they didnot use allowpaging property to true in code behind im confused why im not getting it correctly pls help me to fixJayraj ChhayaPosted Dec 18, 2023, 5:33 AM
I found that the
SolutionAllowPagingproperty of theCreditcardPaymentviewGridView is set to "false". This property needs to be set to "true" to enable paging.To enable paging in the
CreditcardPaymentviewGridView, follow these steps:CreditcardPaymentviewGridView in the code snippet.AllowPagingproperty to "true".By setting the
AllowPagingproperty to "true", the paging functionality will be enabled for theCreditcardPaymentviewGridView.