C#を使用してasp.netアプリケーションを開発しています。 .aspxページを作成し、ページ上の異なる場所に4つのボタンを配置しました。サーバー側では、4つのボタンすべてに1つのクリックイベントだけを使用します。
これが私のコードです:
aspxページ
<asp:Button ID="Button1" runat="server" CommandArgument="Button1" onClick = "allbuttons_Click" />
<asp:Button ID="Button2" runat="server" CommandArgument="Button2" onClick = "allbuttons_Click" />
<asp:Button ID="Button3" runat="server" CommandArgument="Button3" onClick = "allbuttons_Click" />
<asp:Button ID="Button4" runat="server" CommandArgument="Button4" onClick = "allbuttons_Click" />
csページ
protected void allbuttons_Click(object sender, EventArgs e)
{
//Here i want to know which button is pressed
//e.CommandArgument gives an error
}
@Tejsのコメントは正しいです。次のようにしたいようです。
protected void allbuttons_Click(object sender, EventArgs e)
{
var argument = ((Button)sender).CommandArgument;
}
使用する
OnCommand =
そして
protected void allbuttons_Click(object sender, CommandEventArgs e) { }
実際には、どのボタンを押したかを知るためにCommandArgumentを渡す必要はまったくありません。以下のようにボタンのIDを取得できます。
string id = ((Button)sender).ID;
次のように、コマンドテキストをボタンに割り当てることができます。
protected void allbuttons_Click(Object sender, CommandEventArgs e) {
switch(e.CommandName) {
case "Button1":
Message.Text = "You clicked the First button";
break;
case "Button2":
Message.Text = "You clicked the Second button";
break;
case "Button3":
Message.Text = "You clicked Third button";
break;
case "Button4":
Message.Text ="You clicked Fourth button";
break;
}
}