7 - Estructura condicional if |
<%option explicit%>
<html>
<head>
<title>problema</title>
</head>
<body>
<%
dim fecha,mes
fecha=date()
mes=month(fecha)
if mes=12 then
response.write("Estamos en el mes de Diciembre")
end if
%>
</body>
</html>