String[,] holidays = _______ String[13, 32]; protected void Page_Load(object sender, EventArgs e) { holidays[1, 1] = "元旦"; holidays[3, 8] = "妇女节"; holidays[5, 1] = "劳动节"; holidays[5, 4] = "青年节"; holidays[6, 1] = "儿童节"; holidays[7, 1] = "党的生日"; holidays[8, 1] = "建军节"; holidays[10, 1] = "国庆节"; } protected void Calendar1_DayRender(object sender, DayRenderEventArgs e) { CalendarDay d = ((DayRenderEventArgs)e).Day; TableCell c = ((DayRenderEventArgs)e).Cell; if (e.Day.IsOtherMonth) e.Cell.Controls._______(); else { string hol = __________[e.Day.Date.Month, e.Day.Date.Day]; if (hol != string.__________) e.Cell.Controls.Add(new LiteralControl("
" + hol + "")); } }