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?
EmptyDataText
property is not supported by DataList yet. But you can achieve almost same functionality using the following trick:
<FooterTemplate>
<asp:Label Visible='<%#bool.Parse((DataList1.Items.Count==0).ToString())%>'
runat="server" ID="lblNoRecord" Text="No Record Found!"></asp:Label>
</FooterTemplate>
That is creating a Label in Footer of DataList, and make it visible only of DataList record count is 0.