黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

獲得月的名字

代碼:

<!DOCTYPE html>

<html>

<body>

 

<p>VBScripts' function <b>MonthName</b> is used to get a month:</p>

<%

response.Write(MonthName(1))

response.Write("<br>")

response.Write(MonthName(2))

%>

 

<p>Abbreviated name of a month:</p>

<%

response.Write(MonthName(1,true))

response.Write("<br>")

response.Write(MonthName(2,true))

%>

 

<p>Current month:</p>

<%

response.Write(MonthName(month(date)))

response.Write("<br>")

response.Write(MonthName(month(date), true))

%>

 

</body>

</html>

結(jié)果:

VBScripts' function MonthName is used to get a month:

January
February

Abbreviated name of a month:

Jan
Feb

Current month:

October
Oct

相關(guān)文章