我想设置Repeater的宽度和高度,请问怎样设置啊
代码如下:
<div>
        &nbsp;<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<TABLE id="Table1" cellSpacing="0" cellPadding="0" width="750" height="100" border="0" align="center">
<TR>
<td> <asp:HyperLink ID="hy1" NavigateUrl='<%# "product/show_article.aspx?ID="+Eval("ID")%>' runat="server">  <asp:Image ID="IM1" Width="150" Height="200" runat="server" ImageUrl='<%#Eval("ProductPhotoUrl")%>' /></asp:HyperLink>  </td>
<td>
<table>
<tr>
 产品型号:<asp:HyperLink Text='<%#Eval("ProductName")%>' NavigateUrl='<%# "product/show_article.aspx?ID="+Eval("ID")%>' runat="server"></asp:HyperLink>
</tr>
</table>
</td>
</TR> </TABLE>
    </ItemTemplate>
      </asp:Repeater>    </div>
在显示的时候图片和字体之间的间隔太大了要怎样才能设置它们之间的间隔小一些啊