以编程方式更改 C# 数据列表项
我有一个数据列表,我想以编程方式运行一些检查,然后更改显示的文本。 这可以做到吗? 有什么例子吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DataList 有一个 ItemDataBound 事件,该事件表示列表中每个项目的添加。 通过订阅此事件可以处理正在添加的每个项目数据。
服务器控制:
代码隐藏:
您可以在 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:
Code behind:
You can find specific details about the event and parameters in the MSDN Library
您可以对数据列表控件的数据源(数据表、集合等)进行计算和检查。 您还可以通过更新数据列表的数据源以编程方式更改数据列表显示的项目的值。
另一种方法是使用 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.