vote up 1 vote down star
1

Hello,

I am creating a dynamic button in a custom class, outside of the .aspx codebehind. The custom class creates a Table object and generates a column of Buttons within that table. Once generated, the Table is loaded into a placeholder control. Everything is functioning well except for this problem:

How do I programmatically assign a Button Object a 'Click' event within the custom class?

 MyButton.Click += new EventHandler(MyButtonClick);

This results in: 'The name 'MyButtonClick' does not exist in the current context' error.

I know it doesn't exist in the current context, but once the aspx page is rendered, the codebehind will include a method to handle 'MyButtonClick'. I don't know how store a Click event method name into a Button object from a custom class and pass it off to the aspx codebehind to be rendered.

flag

By custom class do you mean custom control? – JustLoren Oct 1 at 18:10
Nope, just a custom class like so: public class DataSetTableRenderer {} with properties, methods etc... – Paulj Oct 1 at 18:54

1 Answer

vote up 4 vote down check

You have to define an event in your custom control. Fire that event on button click so that your .aspx can handle it.

EDIT: Same principles apply to a custom class.

Control Code-Behind:

public delegate void ButtonEventHandler();
public event ButtonEventHandler ButtonEvent;

protected void Button1_Click(object sender, EventArgs e)
{
    ButtonEvent();
}

.ASPX Code Behind:

protected override void OnInit(System.EventArgs e)
{               
     control1.ButtonEvent+= 
              new Control1.ButtonEventHandler (whatever_ButtonEvent);

}

protected void whatever_ButtonEvent()
{
    //do something
}
link|flag

Your Answer

Get an OpenID
or

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