L'ultimo next infatti è sbagliato il tuo codice dovrebbe essere :

codice:
<% Dim Cont%> 
<div id="Layer1" style="position:absolute; width:644px; height:115px; z-index:1; left: 161px; top: 52px;"> 
<table width="100%" border="0"> 

<%For Cont = 1 to 7%> 

		<%if cont=1 then %> 
		<tr> 
			<td width="50%"><%response.write Cont%></td>
			<td width="50"></td> 
		</tr> 
		<%end if%> 
		


		<tr> 
			<td width="50%"> 
			<% 
			if (cont=2) or (cont=4) or (cont=6) then 
				response.write Cont 
			end if%>
			</td> 
			<td width="50%"> 
			<% 
			if (cont=3) or (cont=5) or (cont=7) then 
				response.write Cont 
			end if 
			%> 
			</td> 
		</tr> 
<%next%>
 
</table> 
</div>