this.ClientID  行当中没有这个ID吧楼主要干吗??

解决方案 »

  1.   

    楼主要的只是显示在gridview里?[code=C#]
            TableCell tableCell = new TableCell();
            tableCell.Text = e.Row.ClientID;
            e.Row.Cells.Add(tableCell);
            tableCell = null;
    [code]
      

  2.   

    楼主要的只是显示在gridview里? 
        protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {        TableCell tableCell = new TableCell();
            tableCell.Text = e.Row.ClientID;
            e.Row.Cells.Add(tableCell);
            tableCell = null;
        }
      

  3.   

    GridView行的ID吗!? 默认是没有的!