e.CommandArgument for asp button is not working

前端 未结 4 622
孤独总比滥情好
孤独总比滥情好 2020-12-18 19:41

I am developing a asp.net application using C#. I created an .aspx page and placed four buttons on different locations on the page. On server side, I want to use just one cl

4条回答
  •  一向
    一向 (楼主)
    2020-12-18 20:12

    Use

    OnCommand = 
    

    and

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

提交回复
热议问题