本文主要是介绍Repeater中快速解决无数据问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Repeater 默认没有EmptyTemplate,试了试用自定义控件写 databind觉得太繁。。无意中,从一个老外的博客上发现了一个近似无敌的方法:
most of us are using Repeaters to display Data also we faced the situation of retrieving no result to display so the Repeater will be Empty or we will need to handle this case from code behind to check the number of items and if zero we show a label with No Result found or no records to display message.
we can do this with a simpler way and with no need to write anything in code behind ,let's see how
<asp:Repeater ID="RptrContacts" runat="server"> <ItemTemplate> <!-- Add your Item Template Here --> </ItemTemplate> <FooterTemplate> <asp:Label ID="lblEmpty" Text="no result" runat="server" Visible='<%#bool.Parse((RptrContacts.Items.Count==0).ToString())%>'> </asp:Label> </FooterTemplate> </asp:Repeater>
here we will display a label with "no result" message in the footer we just need to add a label and set it's text property with the message we want.
这篇关于Repeater中快速解决无数据问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!