Script e formattazione

grottafelix

Utente Attivo
5 Mar 2003
2.410
2
38
46
Parco chiuso -
www.girsms.com
<%
while not rs.EOF
Response.Write("<img src='" & Rs("Immagine") & "'><br>")
Response.Write(Rs("1") & "<br>")
Response.Write(Rs("2") & "<br>")
Response.Write(Rs("3") & "<br>")
Response.Write(Rs("4") & "<br>")
Response.Write(Rs("5") & "<br>")
Response.Write(Rs("6") & "<br>")
Response.Write(Rs("7") & "<br>")
Response.Write(Rs("8") & "<br>")
Response.Write(Rs("9") & "<br>")
rs.MoveNext
wend
%>

Devo mettere queste stringhe in questa tabella:

<td width="50%" rowspan="9">
<p align="center">immagine</td>
<td width="50%">1</td>
</tr>
<tr>
<td width="50%">2</td>
</tr>
<tr>
<td width="50%">3</td>
</tr>
<tr>
<td width="50%">4</td>
</tr>
<tr>
<td width="50%">5</td>
</tr>
<tr>
<td width="50%">6</td>
</tr>
<tr>
<td width="50%">7</td>
</tr>
<tr>
<td width="50%">8</td>
</tr>
<tr>
<td width="50%">9</td>

Ma mi sto ubriacando e non riesco a formttare lo scirpt alla tabella.

Mi aiutate per favore?
 
Così:

<%
codice Asp
%>

<td width="50%" rowspan="9">
<p align="center">immagine</td>
<td width="50%"><%=Rs("1")%></td>
</tr>
<tr>
<td width="50%"><%=Rs("2")%></td>
</tr>
<tr>
<td width="50%"><%=Rs("3")%></td>
</tr>
...
</table>

<%
codice Asp
%>
 

Discussioni simili