up vote 4 down vote favorite
3
share [g+] share [fb]

I've a user control registered in an aspx page On click event of a button in the user control, how do i call a method which is there in the parent page's codebehind?

Thanks.

link|improve this question

0% accept rate
feedback

5 Answers

Here is the classic example using events as suggested by Freddy Rios (C# from a web application project). This assumes that you want to use an existing delegate rather than make your own and you aren't passing anything specific to the parent page by event args.

In the user control's code-behind (adapt as necessary if not using code-behind or C#):

public partial class MyUserControl : System.Web.UI.UserControl
{
    public event EventHandler UserControlButtonClicked;

    private void OnUserControlButtonClick()
    {
        if (UserControlButtonClicked != null)
        {
            UserControlButtonClicked(this, EventArgs.Empty);
        }
    }

    protected void TheButton_Click(object sender, EventArgs e)
    {
        // .... do stuff then fire off the event
        OnUserControlButtonClick();
    }

    // .... other code for the user control beyond this point
}

In the page itself you subscribe to the event with something like this:

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        // hook up event handler for exposed user control event
        MyUserControl.UserControlButtonClicked += new  
                    EventHandler(MyUserControl_UserControlButtonClicked);
    }
    private void MyUserControl_UserControlButtonClicked(object sender, EventArgs e)
    {
        // ... do something when event is fired
    }

}
link|improve this answer
Stephen, a helpful and concise answer. +1. – MagicAndi Aug 13 '09 at 9:33
i wish i could give you +2 :) – suhendri Jul 14 '11 at 22:47
feedback

I suggest you don't call the page method directly, as you would be tying your control to the specific page.

Instead expose an event, and have the page subscribe to it. It works for any number of pages, can more easily be used when the control is multiple times on a single page (perhaps even on a list) and is more in line with asp.control design.

link|improve this answer
1  
Observer pattern – Chris Needham Aug 13 '09 at 9:38
feedback

Cast the page as the specific page in your project:

((MyPageName)this.Page).CustomMethod()
link|improve this answer
This will work but it's a bad idea. It breaks several design guidelines and best-practices. – Henk Holterman Mar 8 '09 at 10:28
@Henk of course it breaks best practices, but If the asker doesn't understand something simple like how this works, how will s/he be able to understand bigger things later. Always best to use the simplest way first, even if its wrong, just to learn. – Rex M Mar 8 '09 at 17:15
I know, but for future reference and stumble-in readers I think it's always best to at least mention it. – Henk Holterman Mar 8 '09 at 18:01
feedback

Scott Allen has a useful article on event bubbling from a user control to the parent page, which elaborates on the answer provided by Stephen M. Redd:

link|improve this answer
feedback

You can use Session . Say when you click on a button in user control and when you want to call Parent page method then in event handler of button click set value as

Session["CallParent"]="someValue"; as button will post back the page . On Page_Load event of Parent Page add it

protected void Page_Load(object sender,EventArgs e) { if(Session["CallParent"]!=null) { // here call the Parent Page method Method1(); // now make the session value null Session["CallParent"]=null; } }

It is much more efficient

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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