I am working on a project where the admin user can design the form for the end-users. In other words the admin user will be able to add the textbox, chekboxes, checkbox list, radio button, radio button list etc according to situation's demand. When the end user will fill these details, these should be recorded into the database.
Any quick help appreciated.
Thanks a million
Loading

Gopesh SharmaPosted Aug 8, 2012, 12:59 AM
Now after getting the number, use the following code....
//where n is the number provided at the run time
Button b;
for(i=0;i
b = new Button();
b.Text = "Click me";
Panel1.Controls.Add(b);
}
or you can use array of buttons add that can be added dynamically.