1
Answer

gridview paging problem

charan sekhar

charan sekhar

15y
3k
1

hi iam using asp.net2.0 with c#
In the gridview 1st column is checkbox,in my gridview iam using paging , iam dispalying data at page load,
when user selects the check box that records are stored in database.
but when i selects the checkbox at 1st page then it is
storing all the records but when i selects the 1st page records as well as 2nd page records
 then it is storing only second page records .

iwant to store all the records what ever  user has  selects the checkbox.
can you give me example which helps me.
Answers (1)
0
Sujeet Singh
NA 129 0 7y
this is usually means one of two things:
  1. There is some very unusual code path which, when taken, always causes a crash
  2. A race condition exists between threads in your program. Thus, the crash appears unpredictably and may be difficult to reproduce

My advice to you is to start the program in the debugger, and leave it running until the exception is thrown. Then you can come back here and provide us with the relevant code, stack trace, debug output, etc.