本文介绍了在数据列表中显示不在数据库中的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在一家电子商务网站上工作..我有产品列表,这些列表显示在数据列表中,在该列表中还显示了一些出售的产品.我的要求是在售罄的产品上显示图像.请帮助我..
I''m working for an e-commerce website.. i have product list which are displayed in data list, in that list some of sold products are also displayed. my requirement is to display a image to the product which are sold-out. please help me..
推荐答案
<ItemTemplate>
< %#getSoldProductImages(Eval("CategoryId"))%>
</ItemTemplate>
protected string getSoldProductImages(object categoryId)
{
Find all the soldout product image ref from database
StringBuilder strb=new StringBuilder() ;
foreach(var img in imagelist)
{
strb.append("< img src='path\"+img+"'>");
}
return strb.ToString()
}
这篇关于在数据列表中显示不在数据库中的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!