semplice esempio
questo codice è semplicissimo ma le prestazioni so già a 2x VVoVe:


codice:
<%
	a=timer
	
	j=0
	for i=1 to 250000
		j=j+1
	next
	
	b=timer
	
	response.write j & ": " & b-a & "
"



	a=timer
	
	j=0
	for i=1 to 250000
		aaa
	next
	
	b=timer
	
	response.write j & ": " & b-a & "
"




	sub aaa ()
		j=j+1
	end sub	
%>