Ciao a tutti.
ho un piccolo problema: devo visualizzare i record in una tabella ma anzichè visualizzarli in righe uno sotto l'altro voglio che appaiano su 3 colonne
come modifico il codice?
<%
Dim stream
Dim stream_numRows
Set stream = Server.CreateObject("ADODB.Recordset")
stream.ActiveConnection = MM_streaming_STRING
stream.Source = "select * from video order by idvideo desc"
stream.CursorType = 0
stream.CursorLocation = 2
stream.LockType = 1
stream.Open()
stream_numRows = 0
%>
<table width="100%" border="0" cellspacing="0">
<tr>
<td class="menu">VIDEO</td>
</tr>
<tr>
<td>
<table border="1" width="90">
<% While ((Repeat2__numRows <> 0) AND (NOT stream.EOF)) %>
<tr>
<td><div align="center">[img]video/video/<% =(stream.Fields.Item([/img]" width="80" hspace="10" border="1" align="left" /></div></td>
</tr>
<tr>
<td class="notizie"><div align="center"><%=(stream.Fields.Item("titolo").Va lue)%></div></td>
</tr>
<%
Repeat2__index=Repeat2__index+1
Repeat2__numRows=Repeat2__numRows-1
stream.MoveNext()
Wend
%>
</table>
</td>
</tr>
<tr>
<td></td>
</tr>
</table>

Rispondi quotando
il codice che ti ho scritto sopra è bello che pronto lo devi solo "adattare" ......
... sempre che l'altro l'abbia fatto tu....
