I have a .aspx
page that loads three separate .ascx
controls to represent adding, editing and listing objects. It currently simply swaps out visibility and enables/disables the controls to switch between pages.
However, when listing objects (in a gridview), we offer the basic "Edit" button beside each one. Clicking on this will, obviously, load up the edit control for that user. This functionality exists inside of the control, rather than the parent page.
Is it possible to modify attributes for the parent based on events occurring in a child control? (For example, change the visibility and enable/disable the other children controls)