我有一个母版页和两个内容页,每个内容页都有提交按钮:
<asp:ImageButton runat="server" type="image" id="buttonSubmit" name="buttonSubmit"
alt="ImageButton 1" src="images/button.png" OnClientClick="PreventExitPop=true"/>
我希望能够在以下位置创建一个onclick
事件masterpage.cs
:
protected void buttonSubmit_Click(object sender, EventArgs e)
{
//
}
并将内容页面中的两个按钮附加到此事件。
<asp:ImageButton runat="server" type="image" id="buttonSubmit" name="buttonSubmit"
alt="ImageButton 1" src="images/button.png"
onclick="buttonSubmit_Click"
OnClientClick="PreventExitPop=true"/>
问题是每个内容页面只知道他的代码文件,而不知道masterpage.cs
.