Niente, non c'è verso di farlo andare!Io praticamente devo far si che se ci sono record, devo visualizzare un messaggio, altrimenti mostrare una tabella con dei dati. Ecco il mio codice:
codice:
<tr><%
Dim objConnChanFoot
Set objConnChanFoot = Server.CreateObject("ADODB.Connection")
objConnChanFoot.ConnectionString = "driver={MySQL};server="&MySQLSVR&";uid="&MySQLUID&";pwd="&MySQLPWD&";database="&MySQLDB&";"
objConnChanFoot.Open
%>
<%
Dim sqlChanFoot
sqlChanFoot = "SELECT * FROM articoli WHERE Canale LIKE '%" & Request.QueryString("idCh") & "%'" & "ORDER BY articleID DESC LIMIT 1,10"
Dim rsChanFoot
Set rsChanFoot = objConnChanFoot.Execute(sqlChanFoot)
articoloTroncatoFoot = rsChanFoot("Articolo")
artTroncatoFoot = Mid(articoloTroncatoFoot, 1, 200)
%>
HELP!