当DataList为空时需要显示一条消息
我正在使用 DataList 在我的网页的客户端站点上显示记录。当我的 DataList 为空时,我需要显示一条消息。 Datalist有属性吗?如何显示该消息?
I'm using DataList to show records on Client Site of my web page. I need to show a message when my DataList is empty. Is there a property of Datalist? How to show that message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
DataList 尚不支持
EmptyDataText
属性。但是您可以使用以下技巧实现几乎相同的功能:即在 DataList 的页脚中创建一个 Label,并使其仅在 DataList 记录数为 0 时可见。
EmptyDataText
property is not supported by DataList yet. But you can achieve almost same functionality using the following trick:That is creating a Label in Footer of DataList, and make it visible only of DataList record count is 0.
只需使用 C# 中的参数即可:
...
Simply use parameters in C#:
...
尝试使用此代码
lblMessage
是一个标签控件,最初隐藏在 DataList 下方。您可以在OnDataBind
事件中或在调用dataList.DataBind()
方法之后编写上述代码。try to use this code
lblMessage
is a label control which initially hidden, beneath the DataList. You can write above code either inOnDataBind
event or just after callingdataList.DataBind()
method.