Subin Thomas

Subin Thomas

  • NA
  • 4.9k
  • 117.3k

pagging on gridview ?

Aug 13 2019 5:03 AM
i have a rowcommand to bind a grid using different conditions
how to apply paging on a gridview.
 
for eg.

  1. protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)  
  2. {  
  3. if (e.CommandName == "a")  
  4. {  
  5. bindgrid  
  6. }  
  7.   
  8. if (e.CommandName == "b")  
  9. {  
  10. bindgrid  
  11. }

 


Answers (3)