我有一个带有列表视图的页面,其中有一个 div。这个 div 根据数据库信息有不同的背景颜色:
<asp:ListView ID="lvwPostArt" runat="server" DataSourceID="odsAdvanced" GroupItemCount="3" OnItemDataBound="lvwPostArt_ItemDataBound">
<EmptyDataTemplate>
<p>No matches.</p>
</EmptyDataTemplate>
<LayoutTemplate>
<table style="border: none">
<asp:PlaceHolder ID="groupPlaceholder" runat="server"></asp:PlaceHolder>
</table>
</LayoutTemplate>
<GroupTemplate>
<tr>
<asp:PlaceHolder runat="server" ID="itemPlaceholder"></asp:PlaceHolder>
</tr>
</GroupTemplate>
<ItemTemplate>
<td>
<!--HEEEEEEEERE'S THE DIV!!! -->
<div id="divContainer" class="icondetail" runat="server" style='background-color:<%# Eval("colorFondo") %>'><!-- HERE GOES CUSTOM COLOR -->
<div class="innerBox">
<asp:Image runat="server" ID="img_Post" ImageUrl='<%# Eval("ImageThumbnail") %>' CssClass="StaticImage" />
</div>
</div>
</td>
</ItemTemplate>
</asp:ListView>
但是,这没有收到颜色。objectDataSource 具有以下 DataObjectTypeName:
public class myImage
{
string colorFondo { get; set; }
string ImageThumbnail { get; set; }
}
这是我到目前为止所尝试的:
尝试#1:直接在 div 样式上设置数据绑定。
<div id="divContainer" class="icondetail" runat="server" style='background-color:<%# Eval("colorFondo") %>'>
尝试#2:使用属性 ItemDataBound 设置代码背后的信息
protected void lvwPostArt_ItemDataBound(object sender, ListViewItemEventArgs e)
{
ListViewDataItem dataItem = (ListViewDataItem)e.Item;
if (e.Item.ItemType == ListViewItemType.DataItem)
{
HtmlGenericControl divCont = (HtmlGenericControl)e.Item.FindControl("divContainer");
divCont.Style.Add("background-color", "#ffffff"); //How can I get the info from the DataClass to assign it to the property????
}
}
我的问题是,如何为这个 div 分配背景颜色?