如何根据文章热度在标题前添加不同列表图片
当我在网页一个div中依据点击量将文章标题选出后,要让前三个图标为红色,但我在代码中是用repeater读取的代码: <asp:Repeater ID="Repeaterbooks" runat="server"><ItemTemplate>
<table>
<tr><td style=" border-bottom:1px dashed #666666; line-height:120%;"><a style="color:#25A49B;font-size:small;" href="<%=LTP.Common.ConfigHelper.GetConfigString("LinkUrl") %>/UC/upload/bbs/viewthread.php?tid=<%# Eval("tid") %>&extra=page=1"> <%# Eval("subject") %></a></td></tr>
</table>
</ItemTemplate>
</asp:Repeater>
怎么办呢 --------------------编程问答-------------------- --------------------编程问答-------------------- <%# Container.ItemIndex<3? "<img src=\"\"/>": ""%>
补充:.NET技术 , ASP.NET