Salve a tutti, avrei un problemi nella cotruzione di una tabella, penso sia una cosa semplice, ho provato in tutte le maniere la tabella non si chiude e il risultato è sempre sbagliato:
code:--------------------------------------------------------------------------------
<table width="800" height="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="20" background="images/lay/sfondi/pagine/trattini_verticali_sx.gif"></td>
<%
SQL="SELECT * FROM Categorie;"
Set rec = Server.CreateObject("ADODB.Recordset")
Set Rec=Conn.Execute(SQL)
dim cat_mod
While Not rec.EOF
cat_mod= rec("Categoria").value
cat_mod= Replace ( cat_mod, "`", "'" )
%>
<tr><td width="100" bgcolor="#FFFFCC" height="30"><font size="1" face="Verdana"><%= cat_mod %></font></td>
<%
rec.MoveNext
Wend
rec.close
%>
</tr>
<td width="20" background="images/lay/sfondi/pagine/trattini_verticali_dx.gif"></td>
<td width="652" bgcolor="#F2CC80" valign="top">
<%
dim pag, pag1, pag2
pag = request.querystring("page")
pag1 = left(pag, Len(pag) - 4) %>
<%
if pag = "" then
Response.Redirect "index.asp"
elseif pag<>"" then
Server.Execute "includes/contenuti/"& pag
end if
%>
</td>
<td width="17"></td>
</tr>
</table>
<map name="menu_azienda">
<area shape="rect" coords="146,10,209,25" href="home.asp?page=chi.htm" title="">
<area shape="rect" coords="238,10,311,25" href="home.asp?page=dove.htm" title="">
<area shape="rect" coords="336,10,406,25" href="home.asp?page=contatti.htm" title="">
<area shape="rect" coords="434,10,473,25" href="home.asp?page=links.htm" title="">
<area shape="default" nohref>
</map>
</body>
</HTML>
--------------------------------------------------------------------------------
Potreste darci un okkiata, vorrei che il menù laterale sinistro fosse allineato al contenuto presente sul lato destro.
Grazie della Vs. disponibilità.
Sysma

Rispondi quotando