当前位置:编程学习 > C#/ASP.NET >>

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里? 


    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {

        TableCell tableCell = new TableCell();
        tableCell.Text = e.Row.ClientID;
        e.Row.Cells.Add(tableCell);
        tableCell = null;
    }
--------------------编程问答-------------------- GridView行的ID吗!? 默认是没有的!
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,