40 - Procedimientos en ASP (sub) |
<%option explicit%>
<html>
<head>
<title>problema</title>
</head>
<body>
<%
sub CabeceraPagina()
response.write("<div " & _
"style=""background:#c3d9ff;text-align:right;font-size:40px"">")
dim fecha
fecha=date()
response.write(fecha)
response.write("</div>")
end sub
CabeceraPagina()
%>
</body>
</html>