nesaraja wrote:
how to add the control into form..(Not in Panel and placeholder)
Get reference to the Form control, and add the dynamic control to the form. then i guess your next question will be "How do I get reference to the Form?" :-D. Ok, here are two ways: + With the ASP.NET 2.0, use the Page.Form[^] property. + With the ASP.NET 1.x, make sure the form tag has the runat="server" stuff, then you can declare the HtmlForm[^] instance in code-behind, and use it as you would with a normal object.