42 - Funciones en ASP (function) |
<%option explicit%> <html> <head> <title>problema</title> </head> <body> <% function RetornarFechaddmmaa() dim fecha,dia,mes,anio fecha=date() dia=day(fecha) mes=month(fecha) anio=year(fecha) RetornarFechaddmmaa=dia & "/" & mes & "/" & anio end function response.write(RetornarFechaddmmaa()) %> </body> </html>