Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用具有 HyperlinkColumn 以及其他 BoundColumns 的 ASP.Net DataGrid 类。
当 DataGrid 在屏幕上呈现时,它有一个 ID 值(在 aspx 页面上的控件中分配),但内部结果和值没有与之关联的 ID。
是否可以为从 DataGrid 产生的结果表条目分配或获取 id?我们研究了向 HyperLinkColumn 添加一个“ID”值,但显然它在 ASP.Net 中不存在。(如果这意味着什么,我们正在使用 .Net 4.0。)
您可以尝试用 asp 对象替换(在行数据绑定事件中)所有“内部元素”,对于行中的每个单元格。例如,在内部添加一个 asp:label(带有静态/或动态 id)具有与每个单元格的值相同的文本(内容)。