使用数据绑定更改css

时间:2013-11-18 21:21:07

标签: c# asp.net css data-binding

正如您所看到的,在我的sql数据库中,select命令中存在一个MsgIsNew,其中包含Bit类型。如果MsgIsNew字段的值为true,我如何将BodyLiteral放在span标记中? 我正在使用带有C#的asp.net。 非常感谢你。

<asp:Panel ID="Panel2" runat="server" Visible='<%# Eval("MasSender") %>' Width="100%" Wrap="False">
    <table style="width: 100%;">
        <tr>
            <td>
                <asp:Literal ID="BodyLiteral" runat="server" Text='<%# Eval("MsgBody") %>'></asp:Literal>
            </td>
        </tr>            
        <tr>
            <td>
                <asp:Literal ID="DateLiteral" runat="server" Text='<%# DisplayDate(Eval("MsgDate")) %>'></asp:Literal>
            </td>                
        </tr>
    </table>
</asp:Panel>


SelectCommand="SELECT DISTINCT MsgIsNew, MsgBody, MsgDate, FROM Message"

1 个答案:

答案 0 :(得分:2)

<asp:Panel ID="Panel2" runat="server" Visible='<%# Eval("MasSender") %>' Width="100%" Wrap="False">
<table style="width: 100%;">
    <tr>
        <td>
            <asp:Label runat="server" Visible='<%# Eval("MsgIsNew") %>'>
                <asp:Literal ID="BodyLiteral" runat="server" Text='<%# Eval("MsgBody") %>'></asp:Literal>
            </asp:Label>
        </td>
    </tr>            
    <tr>
        <td>
            <asp:Literal ID="DateLiteral" runat="server" Text='<%# DisplayDate(Eval("MsgDate")) %>'></asp:Literal>
        </td>                
    </tr>
</table>

或者更确切地说:

Visible ='&lt;%#Convert.ToBoolean(Eval(“MsgIsNew”))%&gt;

但你需要确保从数据库返回布尔值或转换(0或1)......

如果这不是你的意思,请更具体。