当前位置: 代码迷 >> ASP.NET >> 有没有办法让vs2008中的calendar控件只得选择月份而不让他选择日
  详细解决方案

有没有办法让vs2008中的calendar控件只得选择月份而不让他选择日

热度:6146   发布时间:2013-02-25 00:00:00.0
有没有办法让vs2008中的calendar控件只能选择月份而不让他选择日?
RT
有什么设置的办法吗?

------解决方案--------------------------------------------------------
protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
e.Cell.Text = "";
}
  相关解决方案