repeater嵌套 布局问题
<asp:repeater id="Re" runat="server" onitemdatabound="re_onitemdatabound"><ItemTemplate>
<% i=it+1
it+=1 %>
<td valign="top">
<table width="902" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="302" height="218" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="8%">
</td>
<td colspan="2"> </td>
<td width="8%"> </td>
</tr>
<tr>
<td height="40"> </td>
<td width="27%" align="center">
<span class="style8"><a href="showmorenews.aspx">
<%# container.dataitem("bigclassname") %>
</a></span>
</td>
<td width="57%" align="right"><a href="#">>>>more</a></td>
<td> </td>
</tr>
<asp:Repeater ID="rep_migxi" Runat="server">
<ItemTemplate>
<tr>
<td height="31"> </td>
<td colspan="2">
<a title='文章标题: <%#databinder.eval(container.dataitem,"title")%>
作者:<%#databinder.eval(container.dataitem,"writer")%>
更新时间:<%#databinder.eval(container.dataitem,"newstime")%>'
href='article_show.aspx?newsid=<%#databinder.eval(container.dataitem,"newsid")%>' target="_blank">
<%#left(databinder.eval(container.dataitem,"title"),20)%>
</a>
</td>
<td> </td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
<td width="4" bgcolor="#ffffff"></td>
</tr>
</table>
</td>
<%
if (i mod 2)=0 then
response.write("</tr><tr><hr>")
end if
%>
</ItemTemplate>
</asp:repeater>
我想一行显示两个,但是我这样写,运行后是一行一个,请高手帮忙改一下。十分感谢