Interacting with a Content Page from a Nested Master Page.
What I want to happen:
If the user is on EditPage.aspx and clicks any buttons that will take the user away from the page, the current content that the user has entered will be saved. Buttons may reside on EditPage.aspx, on EditMaster.master, or on RootMaster.master.
What is happening:
I am able to get the buttons on EditPage.aspx (e.g., Next and Previous) and on EditMaster.master (e.g., Print and Comment) to call the code in EditPage.aspx.cs but I am not able to get the buttons on RootMaster.master (e.g., Home and Settings) to call that
code.
My Code
In EditPage.aspx, I have the following:
<%@ MasterType VirtualPath="~/EditMaster.master" %&g ...
Go to the complete details ...