if oRs.eof then controlla se il RECORDSET è vuoto, non il campo.
codice:
<%
if not oRs.eof then
recordletto=oRs("ar_tag")
if recordletto <> "" then
sVariabile = Split(recordletto,chr(32))
for i=0 to Ubound(sVariabile)
%>

</font><font size="2" face="Arial"><font color="#627BD5" size="1"><span style="text-decoration: none"><%=sVariabile(i)%> </span></font></font><font size="1" face="Arial">

<%
next
else
Response.Write "nessun dato disponibile per questo articolo"
End if
End if
%>
Roby