Click here to Skip to main content
15,885,842 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Creating Quiz with 100 Question in single page. Successfully created radio button list DYNAMICALLY. But now problem is how to retrieve the Data stored in radio button list.

For reference code pasted to create radio button list dynamically

C#
protected void Page_Load(object sender, EventArgs e)
   {
       //if (!Page.IsValid) return;

       int n = 100;

       // now, create n TextBoxes, adding them to the PlaceHolder TextBoxesHere
       for (int i = 0; i < n; i++)
       {
           RBLPlaceHolder.Controls.Add(new RadioButtonList());
       }

       // now, set the Text property of each TextBox
       IterateThroughChildren(this);
   }

   void IterateThroughChildren(Control parent)
   {
     foreach (Control c in parent.Controls)
     {
         if (c.GetType().ToString().Equals("System.Web.UI.WebControls.RadioButtonList") &&
             c.ID == null)
       {
         ((RadioButtonList)c).Items.Add("A");
         ((RadioButtonList)c).Items.Add("B");
         ((RadioButtonList)c).Items.Add("C");
         ((RadioButtonList)c).Items.Add("D");
         ((RadioButtonList)c).RepeatDirection = RepeatDirection.Horizontal;
         count++;
       }

       if (c.Controls.Count > 0)
       {
         IterateThroughChildren(c);
       }
     }
   }
Posted
Comments
ZurdoDev 30-Apr-13 7:00am    
They should show up in Request.Form

1 solution

Use
var myRBL = this.FindControl("RadioButtonList") as RadioButtonList;
 
Share this answer
 
Comments
Member 13138543 20-Apr-17 12:35pm    
Mjhe online exam m question ka Web page create krna h using radio button in data list kaise use kru kaise submit kru please koi bta do

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900