HOME > ASP > ASP Forum > จะทำปฏิทินใน ASP ต้องทำงัยค่ะ จะทำปฏิทินใน ASP อ่ะค่ะได้โค้ดตัวอย่างมาเป็น จาวาสคริป แต่อยากให้มี check box ไว้เลือกช่วงเวลาไม่ทราบว่าต้องใส่ยังงัย
จะทำปฏิทินใน ASP ต้องทำงัยค่ะ จะทำปฏิทินใน ASP อ่ะค่ะได้โค้ดตัวอย่างมาเป็น จาวาสคริป แต่อยากให้มี check box ไว้เลือกช่วงเวลาไม่ทราบว่าต้องใส่ยังงัย
function set_cal(show_date)
{
begin_day = new Date (show_date.getYear(),show_date.getMonth(),1);
begin_day_date = begin_day.getDay();
end_day = new Date (show_date.getYear(),show_date.getMonth()+1,1);
count_day = (end_day - begin_day)/1000/60/60/24;
input_table(begin_day_date,count_day);
}
set_cal(show_date);
function input_table(begin,count)
{
init();
j=0;
if (begin!=0){i=begin-1;}else{i=6}
for (c=1;c<count+1;c++)
{
colum_name = eval("d"+i+"r"+j);
if ((now.getDate() == c)&&(show_date.getMonth() == now.getMonth())&&(show_date.getYear() == now.getYear())) {colum_name.style.backgroundColor = "blue";colum_name.style.color = "white";};
colum_name.innerText = c;
i++;
if (i==7){i=0;j++;}
}
}