vote up 0 vote down star

Any body have idea how to put controls dynamically in asp.net 3.5 ? if any example please provide to me. another Question : is it possible to create Event for Dynamic Controls ?

flag

I think you are asking about DynamicControl is data control in ASP.Net 3.5 – Muhammad Akhtar Jul 9 at 11:00

3 Answers

vote up 3 vote down check

Here is an example (including creating an event) for ASP.NET dynamic controls...

protected void Page_Load(object sender, EventArgs e)
{
    Button button = new Button();
    button.Text = "Click me";
    button.Click += new EventHandler(ButtonClick);

    this.Form.Controls.Add(button);
}

private void ButtonClick(object sender, EventArgs e)
{
    (sender as Button).Text = "You just clicked me!";
}

Hope it helps!

link|flag
That's right but i want that the my form will be design by the user so how many control added dynamically that is not fix. – KuldipMCA Jul 9 at 10:48
@KuldipMCA - I think you need to provide so more detail. If you want your users to add dynamic controls at runtime then maybe web parts might be an option? – Andy Rose Jul 9 at 10:53
I think what he want is ASP.net 3.5 DynamicControl – Muhammad Akhtar Jul 9 at 10:56
1+ is button.ID = "button"; – Muhammad Akhtar Jul 9 at 10:59
how to get the dyanmic event ?? and how we give serverside validation ?? – KuldipMCA Jul 9 at 11:02
vote up 3 vote down

It is certainly possible, and it's possible to "wire up" a controls events despite it being created dynamically.

See the following links for full information:

Dynamic Controls in ASP.NET

How to: Add Controls to an ASP.NET Web Page Programmatically

Dynamic ASP.Net Control Creation Using C#.Net

How To Dynamically Add Controls to a Web Page Video

link|flag
vote up 1 vote down

Here is an article that explains how to do it for custom usercontrols.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.