尝试获取 ASP.NET DataGrid 对象的行时遇到问题
所以我有一个 ASP.NET DataGrid,在 SomeName_ItemBound 中,如果满足某些条件,我尝试设置行的可见性。但是,我似乎找不到获取该行的方法。
如何选择以下位置中的当前行:
SomeName_ItemBound(object sender, DataGridItemEventArgs e)
So I have a ASP.NET DataGrid and in the SomeName_ItemBound I am trying to set the visibility of the row if certain conditions are met. However, I can't seem to find a way to acquire the row.
How do I select the current row in the:
SomeName_ItemBound(object sender, DataGridItemEventArgs e)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataGrid
是一个旧控件,您应该使用GridView
,我猜您一定已经在使用GridView了。e.Item
获取当前行,例如
DataGrid
is an old control you should useGridView
, I guess you must be using GridView already.e.Item
inside your ItemBound eventlike