获得今天的月和天

代码:

<!DOCTYPE html>

<html>

<body>

 

Today it is

<%response.write(WeekdayName(weekday(date)))%>,

<br>

and the month is

<%response.write(MonthName(month(date)))%>

 

</body>

</html>

结果:

Today it is Wednesday,
and the month is October

相关文章