how to access data of gridview outside of gridview
-
Dear all , I am using C# ,asp.net2.0 I am making question list (as question are dynamic) I list in gridview and inside gridview dropdownlist populated with possible response. Now I have to fetch each row of gridview and user response against it on button click outside of gridview Please suggest some link or ideas Thank you
regards imran khan
-
Dear all , I am using C# ,asp.net2.0 I am making question list (as question are dynamic) I list in gridview and inside gridview dropdownlist populated with possible response. Now I have to fetch each row of gridview and user response against it on button click outside of gridview Please suggest some link or ideas Thank you
regards imran khan
Try it..Wait for good Solution... Under button Click for(int i=0;i<=gridview.rows.count-1;i++) { string answer=gridview.rows[i].cells[index].text; }