web-dev-qa-db-ja.com

ASPボタンのe.CommandArgumentが機能しない

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
}
20
liaqat ali

@Tejsのコメントは正しいです。次のようにしたいようです。

protected void allbuttons_Click(object sender, EventArgs e)
{
    var argument = ((Button)sender).CommandArgument;
}
40
Grant Thomas

使用する

OnCommand = 

そして

protected void allbuttons_Click(object sender, CommandEventArgs e) { }
9

実際には、どのボタンを押したかを知るためにCommandArgumentを渡す必要はまったくありません。以下のようにボタンのIDを取得できます。

string id = ((Button)sender).ID;
2
gbs

次のように、コマンドテキストをボタンに割り当てることができます。

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;
    }
}
1
abhijit