Posted on: 9/29/2015 3:58:29 AM | Views : 838

Hi All,
I have a panel to which i have added few dynamically created controls( within a table) ie text box, radio and check box. Now when i am looping through to get the values,  I get null. I am using ASP.NET Panel control. Using Triggers to go to code behind and  running the below code. Anything wrong that I am doing?
List<Answers> listAns =new List<Answers>();
foreach (Control c in tblQuestinare.Controls)         {                         if (c is TextBox && ((TextBox)c).Text!= string.Empty)             {                 Answers ans = new Answers();              &n ...

Go to the complete details ...