how to read values of dynamically created controls in a placeholder
I am creating controls dynamically using a placeholder. I am successfull in creating the dynamic controls but failed to retrieve the values fro the controls. In detail...
1. One user say A is selecting IT as category and ASP.NET as subcategory...
2. When he go to the inner page, he has to answer some questions. Here all the questions will come from database. Whether to show it in listbox,checkbox,radiobutton etc also will be stored in database, so according to the QuestionType field in question type table , the questions will have choice of answers in listbox, radio button, textbox or check box.
3. The datas selected/entered by user will be stored in database with his userid.
When another user B comes, his category and subcategory may be different, so the questions also will be different. Anyway, whether each question answer has to show listbox, radibutton etc will be decided by the questiontype value corresponding to the QuestionTypeID.
So, in short, I am trying to create dynamic controls with place holder. I am successfull in creating controls. But I don't know, what to do, to retrieve the place holder values, like user has two questions
1. Languages Known
a. English
b. Malayalam
c. Tamil
2. Home Land
a. India
b. Pakistan
c. UAE
d. US
For queston ' 1 ' ,I am using listbox and user selects Malayalam and for question ' 2 ', I am using radio button and user selects US, so I have to store malayalam and us for the user(with the userid).
I am attaching the code,stored procedure,samplevalues in table etc in zip format. Please help me to find a solution.
Thanks
Ceema

