1

目前,如果 Address2(来自数据库)为 Null,则以下代码显示一个空行。如何以 <%#Container.DataItem("Address2")%> 的值为条件,以便在数据库中不存在(或为 Null)Address2 时摆脱空行?如果需要代码隐藏中的代码,请在 VB 中提供。

<asp:repeater id="rptLabels" runat="server">
    <HeaderTemplate></HeaderTemplate>
        <ItemTemplate>
             <span style="text-align:left;">         
                 <%#Container.DataItem("Address")%><br />             
                 <%#Container.DataItem("Address2")%><br />
             </span>
        </ItemTemplate>
    <FooterTemplate></FooterTemplate>
</asp:repeater>
4

1 回答 1

0

我最终在比 aspx 页面更舒服的代码中做更多的事情来解决这个问题。

于 2012-06-20T19:43:56.680 回答