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 code
I posted something that works here: Access control > page > master nested > master
Or if you want access to a control you can also do this:
Update parent page Where parent has an update panel named "UpdatePanel1"
Control
UpdatePanel onParent1 = (UpdatePanel)Parent.FindControl("UpdatePanel1");
onParent1.Update();