私はC#で次のように2つのユーザーコントロール(webheader、webfooter)を持っています
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="webheader.ascx.cs" Inherits="WebUserControls.webheader" %>
<p>
<asp:Button ID="btnAdd" runat="server" Text="Add" onclick="btnAdd_Click" />
<asp:Button ID="btnEdit" runat="server" Text="Edit" />
<asp:Button ID="btnDelete" runat="server" Text="Delete" />
</p>
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="webFooters.ascx.cs" Inherits="WebUserControls.webFooters" %>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label4" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label5" runat="server" Text="Label"></asp:Label>
<asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>
<p>
</p>
ユーザーコントロールの webheader に 3 つのボタンがあります webfooters で 3 つの異なるメソッドを呼び出したい 各ボタンは異なるメソッドを呼び出します ページに 2 つの usercontrol を配置したので、どのように処理できますか