谁帮帮我
<body><div align="center">
<%
dim myday,myyear,mymonth
myday=date
myyear=year(myday) 。
mymonth=month(myday)
response.write("今天是:" & myyear & "年" & mymonth &"月") %></div><hr />
<%
dim yuefen
select case mymonth
case 1,3,5,7,8,10,12
yuefen=31
case 2,4,6,9,11
yuefen=30
case 2
if myyear mod 4 =0 and myyear mod 100 <>0 or myyear mod 400=0 then yuefen=29
else
yuefen=28
end if
end select
%>
<table border="1" align="center">
<tr>
<%
for i=1 to 7
response.write("<td>" & weekdayname(i) &"</td>")
next
%>
</tr>
<tr>
<%
dim dangyue
dangyue=weekday(Cdate(myyear &"-" &mymonth &"-"& 1))
for ii=1 to dangyue-1 response.write("<td> </td>")
next
for iii =1 to yuefen
if weekday(cdate(myyear &"-" &mymonth &"-" &iii)) =1 then
response.write("</tr><tr>")
end if
if day(date)=iii then
response.write("<td><font color=red>" & iii &"</font></td>")
else
response.write("<td>" & iii &"</td>") end if
next
dim enddangyue
enddangyue=weekday(cdate(myyear & "-" &mymonth &"-" & yuefen))
for iiii=enddangyue to 6
response.write("<td> </td>")
next
%>
</tr>
</table>
</body>
请问这个输出日历的程序中dangyue=weekday(Cdate(myyear &"-" &mymonth &"-"& 1))这里&和1之间为什么要加一个空格才能正常运行 少了为什么就不行啊?