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?
Asked
Active
Viewed 1.8k times
5 Answers
29
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.

Tayyab Ali
- 431
- 4
- 8
-
Is there an update to this? When I tried this, it couldn't find the data list by its id. – Kadima Dec 10 '20 at 21:06
0
Simply use parameters in C#:
concat(Product, @space ,Subname)
...
cmd.Parameters.AddWithValue("@space", " ");

Osher Levy
- 83
- 7
0
try to use this code
if( dataList.Items.Count == 0 )
{
dataList.Visible = false;
lblMessage.Visible = true;
lblMessage.Text = "No Record Found.";
}
lblMessage
is a label control which initially hidden, beneath the DataList. You can write above code either in OnDataBind
event or just after calling dataList.DataBind()
method.

Nps
- 1,638
- 4
- 20
- 40