codice:
<%
questaPagina = request.serverVariables("PATH_INFO")
submit = request.serverVariables("REQUEST_METHOD") = "POST"
errore = false

	if submit then
	
		dataDiNascita = request.form("dataDiNascita")
		
			if isDate(dataDiNascita) then
			
				giornoDiNascita = datePart("d",dataDiNascita)
				meseDiNascita = datePart("m",dataDiNascita)
				
					if meseDiNascita = 3 then
					
						if giornoDiNascita > 20 then
						segnoZodiacale = "Ariete"
						else
						segnoZodiacale = "Pesci"
						end if
					
					end if
					
					if meseDiNascita = 4 then
					
						if giornoDiNascita > 20 then
						segnoZodiacale = "Toro"
						else
						segnoZodiacale = "Ariete"
						end if
						
					end if
						
					if meseDiNascita = 5 then
					
						if giornoDiNascita > 21 then
						segnoZodiacale = "Gemellli"
						else
						segnoZodiacale = "Toro"
						end if
						
					end if
						
					if meseDiNascita = 6 then
					
						if giornoDiNascita > 21 then
						segnoZodiacale = "Cancro"
						else
						segnoZodiacale = "Gemelli"
						end if
						
					end if
					
					if meseDiNascita = 7 then
					
						if giornoDiNascita > 22 then
						segnoZodiacale = "Leone"
						else
						segnoZodiacale = "Cancro"
						end if					
					
					end if
			
					if meseDiNascita = 8 then
					
						if giornoDiNascita > 23 then
						segnoZodiacale = "Vergine"
						else
						segnoZodiacale = "Leone"
						end if					
					
					end if
					
					if meseDiNascita = 9 then
					
						if giornoDiNascita > 23 then
						segnoZodiacale = "Bilancia"
						else
						segnoZodiacale = "Vergine"
						end if					
					
					end if
			
					if meseDiNascita = 10 then
					
						if giornoDiNascita > 23 then
						segnoZodiacale = "Scorpione"
						else
						segnoZodiacale = "Bilancia"
						end if					
					
					end if
			
					if meseDiNascita = 11 then
					
						if giornoDiNascita > 22 then
						segnoZodiacale = "Sagittario"
						else
						segnoZodiacale = "Scorpionei"
						end if					
					
					end if
			
					if meseDiNascita = 12 then
					
						if giornoDiNascita > 21 then
						segnoZodiacale = "Capricorno"
						else
						segnoZodiacale = "Sagittario"
						end if					
					
					end if
								
					if meseDiNascita = 1 then
					
						if giornoDiNascita > 20 then
						segnoZodiacale = "Acquario"
						else
						segnoZodiacale = "Capricorno"
						end if					
					
					end if
			
					if meseDiNascita = 2 then
					
						if giornoDiNascita > 19 then
						segnoZodiacale = "Pesci"
						else
						segnoZodiacale = "Acquario"
						end if					
					
					end if						
			
			else
			
				errore = true
				messaggio = "Inserire un data di nascita valida"
			
			end if
	
	end if
%>
<form name="segnoZodiacale" method="post" action="<%=questaPagina%>">
Inserisci la tua data di nascita: <input type="text" name="dataDiNascita" value="<%=dataDiNascita%>"> <input type="submit" value="INVIA">
</form>
<%
if submit then

	  if not errore then
%>
Il tuo segno zodiacale &egrave;: <%=segnoZodiacale%>
<% else %>
Errore: <%=messaggio%>
<% 
	  end if
	  
end if 
%>