I have a GridView with paging enabled. When I select a different page in the GridView control, it causes a postback. Because of that my binding of data doesn’t occur.
How is it possible to disable postback in paging?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Its not possible to do the paging with out pager on grid view, and to do paging you need to postback page.
If you dont want pager than remove it by Setting
AllowPagaing= falseproperty in gridview control.