在< FooterTemplate>中,
添加带有一些空数据文本的Label,并将其visible
属性设置为false.
<FooterTemplate>
<table>
<tr>
<td>
<asp:Label ID="lblEmptyData"
Text="No Data To Display" runat="server" Visible="false">
</asp:Label>
</td>
</tr>
</table>
</FooterTemplate>
现在检查绑定转发器时的数据,如果没有返回行,则make label可见,否则无法执行操作.
更多细节here.