Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5549
WebMonthCalendar set other date as today
posted

hi, where can i find the property to set another date to the webmonthcalendar (codebehind , vb.net)?
Greetings

 

  • 19693
    Suggested Answer
    posted

    Hello Martin,

    You can change the SelectedDate:

           DateTime dateTime = new DateTime(2010,7,24);

            WebMonthCalendar1.SelectedDate = dateTime;

    You can also set different FooterContent( by default showing the Today's day)

         WebMonthCalendar1.FooterContent = "Today is 31-12-2010";

    Let me know if you need further assistance