如何根据条件在数据列表中显示图像
我想根据从数据库检索的值更改 DataList 中显示的图像。
场景:我的表中有 5 个优先级,根据优先级,我需要在数据列表中显示图像。
例如
优先级 = 5(红色图像)
优先级= 1(绿色图像)
我如何根据数据列表中的优先级显示这些图像?
I would like to change the displayed image in a DataList as per values retrieved from database.
Scenario: I have 5 priorities in my table and as per Priority I need show the image in datalist.
For example
Priority = 5 (Red image)
Priority = 1 (Green image)
How would I show those images as per priority in datalist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在数据列表中设置辅助函数。示例代码
AT 代码隐藏 (aspx.cs)
免责声明:这只是伪代码,因此没有 try catch 机制。
Set a helper function in the Datalist. Sample code
AT code behind (aspx.cs)
Disclaimer: This is just pseudo code and so no try catch mechanisms.
您可以在数据列表的
ItemDataBound
事件上执行此操作。希望你能在这里完成剩下的工作。
You can do on
ItemDataBound
event of datalist.Hope you can do rest of work here.