3
Answers

how to get my page when page reload in data paging c#.

how to get my page when page reload i.e i have stay on page two when reload my page then it show my first page , how to get page second page when it reload ...
thanks 

Answers (3)

1
Photo of Ravi Sangtani
NA 806 6k 7y
Hi! try this one
  1. bool isfound = false;  
  2. for (int i = 0; i < allstd.Length; i++)  
  3. {  
  4. isfound = false;  
  5. for (int j = 0; j < present.Length; j++)  
  6. {  
  7. if (allstd[i] == present[j])  
  8. {  
  9. isfound = true;  
  10. break;  
  11. }  
  12. }  
  13. if (!isfound)  
  14. {  
  15. MessageBox.Show(allstd[i]);  
  16. }  
  17. }