Gridview每行的ClientID
怎么获取每行的ClientID,,如果在后台,,可以通过e.Row.ClientID来取。。
但是,我希望在在页面上 <itemtemplate><%=this.ClientID%> </itemtemplate> 取得此行的ClientID,,,
--------------------编程问答-------------------- 用js吧 --------------------编程问答-------------------- this.ClientID 行当中没有这个ID吧
楼主要干吗?? --------------------编程问答-------------------- 楼主要的只是显示在gridview里?
[code=C#]
TableCell tableCell = new TableCell();
tableCell.Text = e.Row.ClientID;
e.Row.Cells.Add(tableCell);
tableCell = null;
[code] --------------------编程问答-------------------- 楼主要的只是显示在gridview里?
--------------------编程问答-------------------- GridView行的ID吗!? 默认是没有的!
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
TableCell tableCell = new TableCell();
tableCell.Text = e.Row.ClientID;
e.Row.Cells.Add(tableCell);
tableCell = null;
}
补充:.NET技术 , ASP.NET