我遇到了asp:Calendar控件的问题。我希望周末隐藏起来并且不可取。
我已经隐藏了这些日子:
if (e.Day.IsWeekend)
{
e.Cell.Controls.Clear();
e.Cell.Text = e.Day.DayNumberText;
e.Cell.CssClass = "cal_weekend";
e.Cell.Visible = false;
}
我还用css崩溃了日期:
th.cal_dayTitle:nth-child(6), th.cal_dayTitle:nth-child(7){visibility:collapse;}
她真正的问题来自: 如何更改asp.net日历控件上的colspan? 自动生成的表如下所示:
<td colspan="7" >
希望你能帮助我:)
P.S。已经看过How to change colspan of a td dynamically in c#?,但它似乎不符合我的问题。