在我的应用程序中我正在使用DataGrid,我将数据集绑定到DataGrid.So如果数据集记录为零,我想在我的DataGrid中显示“NO ReCORDS FOUND”。
提前致谢。
答案 0 :(得分:2)
EmptyDataText
中没有DataGrid
属性,因此在您的代码隐藏中执行类似
if (dgTest.Items.Count == 0)
{
lblEmpty.Visible = true;
lblEmpty.Text = "Empty";
}
其中dgTest
是DataGrid
的ID,而lblEmpty
是占位符标签。
答案 1 :(得分:0)
您也有GridView标记,因此对于GridView,您可以将其EmptyDataText
属性设置为"No records found"
。这有点复杂DataGrid
。