日期:2014-05-17  浏览次数:20486 次

GridView里的按钮事件
GridView里显示的数据 每一行有2个<asp:Button> 一个+ 一个- 一个Lable 怎么通过点击+号 -号 在更改Lable的text值

 

------解决方案--------------------
C# code
    if (e.CommandName == "jian")
    {
        Button x = e.CommandSource as Button;
        Label sm = x.NamingContainer.FindControl("Num") as Label;
        sm.Text = "新值";
    }