- <FooterTemplate>
- <td style="height: 16px">
- <asp:Label ID="Label1" runat="server" Text="暂无检索记录!" Visible="false"></asp:Label>
- </td>
- </FooterTemplate>
<FooterTemplate> <td style="height: 16px"> <asp:Label ID="Label1" runat="server" Text="暂无检索记录!" Visible="false"></asp:Label> </td> </FooterTemplate>
- protected void rpSearch_ItemDataBound(object sender, RepeaterItemEventArgs e)
- {
- if (e.Item.ItemType==ListItemType.Footer)
- {
- if (rpSearch.Items.Count<=0)
- {
- ((Label)e.Item.FindControl("Label1")).Visible = true;
- }
- }
- }