这个怎么实现?(已解决)
1月 1号 2号。。。。31号
2月 1号 2号。。。。
4月
.
.
.
12月
这个怎么循环出来啊 月分的天数不能错
<%for i =1 to 12%>
<table width="100%" height="52" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="26"><%=i%>月
<%thismonth=year(date)&"-"&i&"-1" '当前月的第一天
nextmonth=dateadd("m",1,thismonth) '下个月的第一天
num=datediff("d",thismonth,nextmonth)
response.Write num%></td>
</tr>
<tr>
<td height="26"> </td>
</tr>
</table>
<%next%>
[此贴子已经被作者于2007-5-8 9:32:38编辑过]