<%
body = objRS("body")
body = replace(body,vbCrLf,"<br>")
body = Replace(body," "," ")
%>
<table>
<tr>
<td width="500" align = "left"><b><%=objRS("titolo")%></b></td></tr>
<tr><td width="500" align = "left"> di <a href="autore.asp?a=<%=objRS("nick")%>"><%=nome%></a></td></tr>
<tr>
<%
Dim x
x = 100
num = Len(body)
while num > x
'Costruisci la colonna...
Response.Write("<td>" & Left(body, 100) & "</td>")
body = Mid(body, 101)
wend
If body <> "" Then 'Questo controllo non dovrebbe essere necessario, ma sai com è...
Response.Write("<td>" & body & "</td>")
End If
%></tr>
<%
objRS.Close
Set objRS = Nothing
objConn.Close
Set objConn = Nothing
%>
<tr>
<td width="770" align = "left">
<br><br>
<a href="testo.asp?id=<%=request("id")%>">invia il testo ad un amico<a>
</td></tr>
</table>
Qui riporto il codice.
Luke come posso fare il conteggio dinamicamente ?
Grazie
Andrea