【Vegas原创】巧用GridView ButtonField列

  <asp:ButtonField Text="成立"  CommandName="assReg"/>

 

  protected void grdSignedAss_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        
if (e.CommandName == "assReg")
        {
            
int intRow = int.Parse(e.CommandArgument.ToString()); //获取当前所在行
              string strUniqueID = grdSignedAss.DataKeys[intRow].Value.ToString();
        }
    }

 

posted @ 2008-04-17 13:49  李济宏(Amadeus)  阅读(148)  评论(0编辑  收藏  举报