voi ci vedete qualcosa di strano in questo estratto di codice ?codice:if objDB.NumeroRecords() <> 0 then if objDB.NumeroRecords() = 1 then label_numero_news.text = "C'è <font color=yellow>" & objDB.NumeroRecords() & "</font> notizie inserite in archivio." else label_numero_news.text = "Ci sono <font color=yellow>" & objDB.NumeroRecords() & "</font> notizie inserite in archivio." end if objDB.SettaStringaSQL = "SELECT * FROM TBNEWS ORDER BY DATAINSERIMENTO" rpt_news.datasource = objdb.estraireader() rpt_news.databind() else label_numero_news.text = "Non ci sono notizie in archivio." pannello_news.visible = false end if if request.QueryString("messaggio") <> "" then label_messaggio.visible = true label_messaggio.text = request.QueryString("messaggio") end if