Ciao ragazzi come posso evitare che mi vadino in loop anche gli include file .
grazie



[CODE]
codice:
		<td width="120" height="0" bgcolor="<%=TabellaBig_Colore_SxDx%>" valign="top" align="center">
				


				


				


				

			</td>
			<td width="5" bgcolor="<%=TabellaBig_Colore_Cx%>">
				
			</td>
			<td width="500" bgcolor="<%=TabellaBig_Colore_Cx%>" valign="top" bordercolor="#999999">
			<div align="center">
              <center>

<table border="1" width="350" cellspacing="3" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111" height="1">
	<tr>
		<td width="25" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        ID</font></td>
		<td width="25" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        UserID</font></td>
		<td width="50" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        Data</font></td>
		<td width="50" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        Ora</font></td>
		<td width="25" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        M.P.</font></td>
		<td width="25" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        Totale</font></td>
		<td width="25" bgcolor="#FFFFEC" height="12"><font size="1" face="Verdana">
        Evaso</font></td>
	</tr>
		<tr>
			<td height="1">"><%=RS("ID")%></td>
			<td height="1"><%=RS("UserID")%></a></td>
			<td height="1"><%=RS("Data")%></td>
			<td height="1"><%=RS("Ora")%></td>
			<td height="1"><%=Mid(RS("Pagamento"), 1, 2)%></td>
			<td height="1"><p align="right"><font size="1" face="Verdana"><%=VisualizzaPrezzo(RS("Totale"))%></font></p></td>
			<td height="1"><%If RS("Evaso") then%><font size="1" face="Verdana">SI<%Else%>NO<%End If%></font></td>
		</tr>
<%
	RS.MoveNext
	Loop
%>
<%
	RS.Close
%>



<%
	Set RS = Nothing
	Conn.Close
	Set Conn = Nothing
%>
</table>code]