.aspx
<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound">
<HeaderTemplate>
<table border="0" cellpadding="0" cellspacing="0" width="780px" style="height:700px"><tr>
</HeaderTemplate>
<ItemTemplate>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="120px" style="height:165px"><tr>
<td style=" width:144px" align="center"><a href="imageview.aspx?id=<%# DataBinder.Eval(Container.DataItem, "cc")%>" target="_blank"><img src='<%# DataBinder.Eval(Container.DataItem, "aa")%>' alt="" width="100px" height="100px" border="0"/></a></td>
</tr>
<tr>
<td align="center"> <%# DataBinder.Eval(Container.DataItem, "bb")%></td>
</tr>
</table></td>
</ItemTemplate>
<FooterTemplate>
</tr></table>
</FooterTemplate>
</asp:Repeater>
.cs
private int n = 0;//定义全局变量
protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (n % 5 == 0)
{
e.Item.Controls.Add(new LiteralControl("</tr><tr>"));
}
n++;
}
转自:http://hi.baidu.com/huangwei999111/blog/item/3637359bdfc63fb1c8eaf461.html