尝试获取 ASP.NET DataGrid 对象的行时遇到问题

发布于 2024-10-27 21:58:11 字数 199 浏览 0 评论 0原文

所以我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海风掠过北极光 2024-11-03 21:58:11
  • DataGrid 是一个旧控件,您应该使用GridView,我猜您一定已经在使用GridView了。
  • 您可以通过 ItemBound 事件中的 e.Item 获取当前行,

例如

protected void SomeName_ItemBound(Object sender, DataGridItemEventArgs e) 
{
     // Use the ItemDataBound event to customize the DataGrid control. 
     // The ItemDataBound event allows you to access the data before 
     // the item is displayed in the control. In this example, the 
     // ItemDataBound event is used to format the items in the 
     // CurrencyColumn in currency format.
     if((e.Item.ItemType == ListItemType.Item) || 
         (e.Item.ItemType == ListItemType.AlternatingItem))
     {
         // e.Item // is your current row
         e.Item.Visible = false;
     }
}
  • DataGrid is an old control you should use GridView, I guess you must be using GridView already.
  • You can get current row by e.Item inside your ItemBound event

like

protected void SomeName_ItemBound(Object sender, DataGridItemEventArgs e) 
{
     // Use the ItemDataBound event to customize the DataGrid control. 
     // The ItemDataBound event allows you to access the data before 
     // the item is displayed in the control. In this example, the 
     // ItemDataBound event is used to format the items in the 
     // CurrencyColumn in currency format.
     if((e.Item.ItemType == ListItemType.Item) || 
         (e.Item.ItemType == ListItemType.AlternatingItem))
     {
         // e.Item // is your current row
         e.Item.Visible = false;
     }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文