日期:2014-05-17 浏览次数:20481 次
<asp:Repeater runat="server" ID="rptImg">
<ItemTemplate>
<ul>
<li>
<img src="<%#Eval("imgpath") %>" class="youclass" alt="xxx" title="xxx" />
</li>
</ul>
</ItemTemplate>
</asp:Repeater>
this.rptImg.DataSource = ds;
this.rptImg.DataBind();