Question:How will you implement the logic for the following scenario in .Net framework 4.0? Suppose you have a GridView with paging enabled. You select the third row on page 1 and then move to page 2. Nothing is selected on page 2. When you move back to page 1, the third row should still be selected.
A Set the GridView DataKeyNames property.
B Set the GridView EnablePersistedSelection property to true.
C Set the Gridview PagerSettings-Mode property.
D It is not possible to implement the given logic for the scenario described above.
+ AnswerB
+ Report