如像aspk  的这样内容,这样整个table的样子,边框可以都很方便的定义,如果用asp.net的data中的控件,感觉在页面的美观是容易修改方便不太方便,asp.net中没有类似的其它方法呢?
<table width="143"  border="0" align="center" cellpadding="0" cellspacing="4">
              <%
set rs=conn.execute("select top 2 p_image,id from product where istop=true order by id desc")
if not (rs.eof or rs.bof) then
do while not rs.eof 
%>
  <tr> 
                <td width="135">
                    <table width="100%"  border="0" cellpadding="5" cellspacing="1" bgcolor="#D09804">
                      <tr> 
                        
                      <td bgcolor="#FBBB11" align="center"><a href="proshow_detail.asp?id=<%=rs(1)%>"><img src="<%=rs(0)%>" width="110" height="93" border="0"></a></td>
                      </tr>
                    </table>
                  </td>
              </tr>
  <%
  rs.movenext
  loop
  end if
  rs.close
  set rs=nothing
  %>
            </table>