M
Mark
Hi,
I'm interested in creating a page that display all 12 months in
mini-style calendars. In the past i've done it with tables and asp,
however i was interested to know if the asp.net calendar control would
be better used? If so can you set 12 separate calendar controls to the
12 months?
On another note is there a way to get a int of the day the month
starts on, to skip forward to? Previously i've done it in asp with:
var d = new Date();
d.setDate(1); d.setMonth(m); d.setYear(y);
for(x=0;x<d.getDay();x++) { //skips unrequired cells
Response.Write('<td> </td>'); intLoop++; skipWeekend++;
}
any thing simlar to the .getDay() call in asp.net?
thanks
I'm interested in creating a page that display all 12 months in
mini-style calendars. In the past i've done it with tables and asp,
however i was interested to know if the asp.net calendar control would
be better used? If so can you set 12 separate calendar controls to the
12 months?
On another note is there a way to get a int of the day the month
starts on, to skip forward to? Previously i've done it in asp with:
var d = new Date();
d.setDate(1); d.setMonth(m); d.setYear(y);
for(x=0;x<d.getDay();x++) { //skips unrequired cells
Response.Write('<td> </td>'); intLoop++; skipWeekend++;
}
any thing simlar to the .getDay() call in asp.net?
thanks