Allora,
ho risolto il problema dell'errore 
Solo che ora voglio fare in modo che il giorno che contiene un evento sia cliccabile e senza il foglietto mentre gli altri dovrebbero rimanere non cliccabili ....
ci provo con questo codice ...
codice:
<td height="17" valign="top">
<a href="eventi.asp?date=<%=dateSelect%>" target="_top">
<%=dateCounter%>
<font face="Verdana" size="1">
<%
Set RSEVENT = Server.CreateObject("ADODB.RecordSet")
RSEVENT.Open "SELECT Date FROM Events GROUP BY Date", Conn, 1, 3
Do while NOT RSEVENT.EOF
rsdate = RSEVENT("Date")
If (Day(rsdate) = dateCounter) AND (Month(rsdate) = CInt(navmonth))
AND (Year(rsdate) = CInt(navyear)) Then%>
<%If RSBODY("Event_Display") = True Then%>
<%=RSEVENT("Category")%>
<%Else%>
[img]evento.gif[/img]
<% End If
End If
RSEVENT.movenext
Loop
RSEVENT.close
%>
</font></a></td>