本帖最后由 q379404020 于 2010-12-21 16:49:42 编辑

解决方案 »

  1.   

    http://topic.csdn.net/u/20100107/11/8dcd015f-2dbd-4bab-afee-ac62a58298f7.html
      

  2.   

    有很多自己google “jquery+calendar+special days”http://www.google.com.hk/search?hl=zh-CN&newwindow=1&safe=strict&client=pub-5434506002917399&prog=aff&channel=2000052003&q=jquery%2Bcalendar%2Bspecial+days&btnG=Google+%E6%90%9C%E7%B4%A2&aq=f&aqi=&aql=&oq=&gs_rfai=
      

  3.   

    服务器控件Calendar的Calendar1_DayRender 事件里,可以先清空 e.Cell.Controls.Clear();
    然后根据需求添加   比如 TextBox tb=new TextBox();
            tb.Text="5";
            e.Cell.Controls.Add(tb);
      

  4.   

    也可以加一些js  
             e.Cell.Controls.Clear();
            Literal l = new Literal();
            l.Text = "<div onclick=\"alert('aaa')\">1</div>";
            e.Cell.Controls.Add(l);