add fieldset control on run time
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
i have to add fieldset control to my page on page load and add controls to this control. can any body help me on that. Thanks
hi I don't know FieldSet control but I know how to insert a controls at runtime You can use Page Controls property.
Panel panel=new Panel();
this.Controls.Add(panel);Mohammad Khansari