请教datalist,repeater等控件如何检测没数据时,显示“当前没有任何记录”
请教datalist,repeater等控件如何检测没数据时,显示“当前没有任何记录”?
不用后台CS加代码的,
在线等
------解决方案-------------------- <asp:Panel id= "Panel1 " runat= "server ">
DataGrid..
</asp:Panel>
<asp:Panel id= "Panel2 " runat= "server ">
当前没有任何记录
</asp:Panel>
在做DataBind时判断是否存在记录
if(存在记录)
Panel1.Visable=true;Panel2.Visable=false;
else
Panel2.Visable=true;Panel1.Visable=false;