基于来自转发器内部的SqlDataSource的数据更改标签控制属性

时间:2013-07-01 16:14:03

标签: c# asp.net sql-server repeater sqldatasource

我正在使用转发器控件将数据从SqlDataSource填充到我自定义设计的显示框中。

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1" OnDataBinding="Repeater_ItemDataBound">
<HeaderTemplate>

</HeaderTemplate>

<ItemTemplate>

   <div class="bubble-content">
     <div style="float: left;">
       <h2 class="bubble-content-title"><%# Eval("CommentTitle") %></h2>
     </div>

     <div style="text-align: right;">
       <asp:Label ID="lbl_category" runat="server" Text=""><%# Eval("CommentType") %> 
       </asp:Label>
     </div>

     <div style="float: left;">
       <p><%# Eval("CommentContent") %></p>
     </div>
   </div>
</ItemTemplate>

<FooterTemplate>
</FooterTemplate>

</asp:Repeater>

<asp:SqlDataSource ID="mySqlDataSource" runat="server"
    ConnectionString="<%$ ConnectionStrings:myConnectionString %>"
    SelectCommand="SELECT [CommentTitle],[CommentType],[CommentContent] FROM [Comments] WHERE ([PostId] = @PostId)">
   <SelectParameters>
        <asp:QueryStringParameter Name="PostId" QueryStringField="id" Type="String" />
    </SelectParameters>
</asp:SqlDataSource>

现在,数据库中可以有三种类型的“CommentTypes”。我想根据[CommentType]的值更改“lbl_category”的CssClass属性。

我试过这样做:

<asp:Label ID="lbl_category" runat="server" CssClass="<%# Eval("CommentType") %>" Text=""><%# Eval("CommentType") %></asp:Label>

但是这会出错:“服务器控件形成不好” 并且无法在后面的代码中找到实现此目的的方法。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

尝试更改您的代码:

<asp:Label ID="lbl_category" runat="server" CssClass="<%# Eval("CommentType") %>" 

到此:

<asp:Label ID="lbl_category" runat="server" CssClass='<%# Eval("CommentType") %>' />