Get panel values
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a 3 step survey, from where in on each step we are collecting some values. Each step is created as a panel, and set visible to false, enabling them in the code as required. On Step 3, there are about 5 questions the user needs to complete, upon which an account is created. So, on the button click of this final step, for some reason all the values in this panel are lost when i try to get the values,
CheckBoxList chkbxChk = (CheckBoxList)pnlQuestions.FindControl("cbl_" + qa.questionid);
It appears as though on button click does not remember the values from panel? any ideas? Thanks!