以编程方式更改 C# 数据列表项

发布于 2024-07-24 19:25:30 字数 58 浏览 6 评论 0原文

我有一个数据列表,我想以编程方式运行一些检查,然后更改显示的文本。 这可以做到吗? 有什么例子吗?

I have a datalist i want to programmatically run some checks and then change the text that is been displayed. Can this be done ? Any examples?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夏末 2024-07-31 19:25:30

DataList 有一个 ItemDataBound 事件,该事件表示列表中每个项目的添加。 通过订阅此事件可以处理正在添加的每个项目数据。

服务器控制:

<asp:DataList id="ItemsList"
       ...
       OnItemDataBound="ItemDataBound"
       runat="server">

代码隐藏:

protected void ItemDataBound(Object sender, DataListItemEventArgs e)
{
   if (e.Item.ItemType == ListItemType.Item || 
       e.Item.ItemType == ListItemType.AlternatingItem)
   {
       //process item data
   }
}

您可以在 MSDN 库<​​/a>

The DataList has an ItemDataBound event which signals the addition of each item in the list. By subscribing to this event can process each item data being added.

Server control:

<asp:DataList id="ItemsList"
       ...
       OnItemDataBound="ItemDataBound"
       runat="server">

Code behind:

protected void ItemDataBound(Object sender, DataListItemEventArgs e)
{
   if (e.Item.ItemType == ListItemType.Item || 
       e.Item.ItemType == ListItemType.AlternatingItem)
   {
       //process item data
   }
}

You can find specific details about the event and parameters in the MSDN Library

只怪假的太真实 2024-07-31 19:25:30

您可以对数据列表控件的数据源(数据表、集合等)进行计算和检查。 您还可以通过更新数据列表的数据源以编程方式更改数据列表显示的项目的值。

另一种方法是使用 ItemDataBound 事件。 在 MSDN 中可以看一个例子。

You can do your calculations and checks on datalist control's data source (datatable, collection, ... etc.). Also you can programmatically change the values of the items that datalist display by updating the datasource of the datalist.

An alternative way is using ItemDataBound event. Here in MSDN you can see an example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文