Ragazzi una faccenda moltooo strana :master: nella mia pagina ho alcuni <font class="XXX"> blabla </font> che per magia me ne funzionano solo la metà eppure ho controllato svariate volte![]()
![]()
anke il codice html
incollo uno scorcio della pagina così per far intendere meglio:
questo è il codice
<TABLE border="0" width="100%" cellspacing="0" cellpadding="4">
<TR>
<TD align="center" style="border-top:1px solid #FFCC00;" bgcolor="#2D607F"><font class="Testo_B">Autore</font></TD>
<TD align="center" style="border-top:1px solid #FFCC00;" bgcolor="#2D607F">
<font class="Testo_B">Topic</font></TD>
</TR>
<%
If mypage = 1 then Call GetFirst
%>
<%
'## Leggo i topics dal Database
strSql ="SELECT Members.M_Name, Members.M_ICQ, Reply.Reply_ID, Reply.R_Posted_By, Reply.Topic_ID, Reply.R_Message, Reply.R_Posted "
strSql = strSQl & "FROM Members INNER JOIN Reply ON Members.Member_id = Reply.R_Posted_By "
strSql = strSQl & "where topic_id = " & Request.QueryString("topic_id") & " order by reply.R_Posted"
set rs = Server.CreateObject("ADODB.Recordset")
rs.cachesize=15
rs.open strSQL, my_conn, 3
i = 0
If rs.Eof or rs.Bof then ' No categories found in DB
Response.Write ""
Else
rs.movefirst
rs.pagesize=mypagesize
maxpages=cint(rs.pagecount)
maxrecs=cint(rs.pagesize)
rs.absolutepage=mypage
howmanyrecs=0
rec = 1
do until rs.Eof or rec = 16 '## Display Forum
if i = 0 then
CColor = AltForumCellColor
else
CColor = ForumCellColor
End if
Response.Write "<TR>"
Response.Write "<TD bgcolor='" & CColor & "' valign='top'><font class='Testo_B'>" & rs("M_name") & "</font></TD>"
Response.Write "<TD bgcolor='" & CColor & "' valign='top'><font class='Testo_B'>Posted - " & day(rs("R_Posted")) & " " & monthname(month(rs("R_Posted"))) & " " & year(rs("R_Posted")) & " " & hour(rs("R_Posted")) & ":" & Minute(rs("R_Posted")) & "</font>"
Response.Write "[img]profile.gif[/img]"
Response.Write "[img]email.gif[/img]"
Response.Write "[img]edit.gif[/img]"
if ICQ = "true" then
if trim(rs("M_ICQ")) <> "" then
Response.Write "http://[img]http://online.mirabilis....mg=5[/img]"
End If
End If
Response.Write "<hr noshade size=1><font class='Testo_B'>" & formatStr(rs("R_Message")) & "</font>"
Response.Write "</TD></TR>"
rs.MoveNext
i = i + 1
if i = 2 then i = 0
rec = rec + 1
loop
End If
%>
=================
scusate la lunghezzacmq quelli in neretto sono gli unici funzionanti eppure la classe è la stessa
![]()
thanks
mUrf.Net