for i=1 to Max_Day%>
<td>
<%
select case intWeekday
case 1
Response.Write "ÀÏ"
case 2
Response.Write "¿ù"
case 3
Response.Write "È"
case 4
Response.Write "¼ö"
case 5
Response.Write "¸ñ"
case 6
Response.Write "±Ý"
case 7
Response.Write "Åä"
end select
Response.Write "<br>"&i
intWeekday=intWeekday+1
if intWeekday=8 then
intWeekday=1
end if%>
</td>
<%next%>
</tr>
</table>