李动态背景图片绑定在asp:repeater中

时间:2013-01-26 23:55:15

标签: c# asp.net .net css

我正在使用来自数据库的<li>的背景图片。我有许多产品图像来自后端作为路径~/uploads/images/a09gh0977.png。 我知道动态绑定可以通过

实现

<%#string.Format("{0}",Eval("db_Path"));

但我的问题是,我通过外部css类应用背景图像。

.product-image
{
 background-image:url('') /* how to set dynamic db driven image here.
 other properties will go here
}

我知道这个<li> <img src='<%#Eval()%>' runat='server'> </li>的最简单的解决方案,但我的客户需要我在这里提到的方式。我试图说服他最简单的解决方案{img tag},但他要求尝试是否有可能。我不知道为什么?

我想知道,如果可以使用ASP.Net和C#动态构建那个css类。

0 个答案:

没有答案