Hi,
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.
|
|
|
|
|
|
|
Cast the page as the specific page in your project:
|
||||||
|
|
|
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. |
||
|
|
|
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#):
In the page itself you subscribe to the event with something like this:
|
||
|
|
|
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: |
||
|
|