bsp; if i>nunmonthstart and i<=nunmonthend+nunmonthstart then 60 '如果为显示的是今天则用红色背景显示 61 if iv=Day(now) and month(now)=pmonth and year(now)=pyear then 62 response.write( "<td align=center bgcolor=ffaaaa><a href='#' target=_blank>" & iv & "</a></td>") 63 else 64 response.write( "<td align=center><a href='#' target=_blank>" & iv & "</a></td>") 65 end if 66 else 67 response.write( "<td> </td>") 68 end if 69 70 '如果能被7整除(每行显示7个)则输出一个换行 71 if i mod 7=0 then 72 response.write( "</tr><tr align=center bgcolor=ffffff height=19>") 73 end if 74 i=i+1 75 loop 76%> 77</table> 78</body>