标签:style color os 数据 width for
<table class="r_line" cellpadding="3" cellspacing="1" width="100%"> <tr class="r_title"> <td>编号</td> </tr> <asp:Repeater ID="rptRecord" runat="server"> <ItemTemplate> <tr style=‘background-color:<%#(Container.ItemIndex%2==0)?"#fff":"#eee"%>‘> <td><a href=‘Detail.aspx?PID=<%=Request.QueryString["PID"] %>&did=<%#Eval("PID") %>‘><%#Eval("PID") %></a></td> </tr> </ItemTemplate> <FooterTemplate> <tr class="r_bg"> <td> <asp:Label ID="lblEmpty" Text="无记录.." runat="server" Visible=‘<%#bool.Parse((rptRecord.Items.Count==0).ToString())%>‘></asp:Label> </td> </tr> </FooterTemplate> </asp:Repeater> </table>
上面是从网上看到的
我自己这么写的
<FooterTemplate> <% if (rptComunicateList_Untreated.Items.Count == 0) { %> <div class=‘infor-block‘ style=‘text-align: center; color: #999999;‘> <p> 没有相关记录! </p> </div> <%}%> </FooterTemplate>
没啥含量,记录下来以后多用到
Repeater在无数据记录时显示“无相关记录...”,布布扣,bubuko.com
标签:style color os 数据 width for
原文地址:http://my.oschina.net/chengkuan/blog/288667