Salve a tutti ho il seguente codice
<%
Dim Conn
Set Conn = Server.CreateObject(”ADODB.Connection”)
conn.Open “driver={Microsoft Access Driver (*.mdb)};dbq=” & server.mappath(”database/link.mdb”)
Dim rs
Set rs = Server.CreateObject(”ADODB.Recordset”)
rs.Open “select * from link order by id DESC”, conn
Do while NOT RS.EOF
%>
<%
Dim descrizione
descrizione=rs(”descrizione”)
response.write(descrizione)
%>
<%
Dim link
link=rs(”link”)
%>
” target=”_blank”><% response.write(link) %>
</p>
<%
RS.MoveNext
Loop
RS.Close
Set RS = Nothing
conn.Close
Set conn=Nothing
%>
visualizzo i campi di un database in questo modo
1
2
3
4
5
6
7
8
9
10
ma quello che vorrei è fare in modo che i campi vengano visualizzati in questo modo:
1 2 3 4 5
6 7 8 9 10
grazie mille

Rispondi quotando
