By default, the value of "today" in the Calendar Web control is set to match the date of the server on which the Web Forms page runs. However, you might need to adjust the date to accommodate users who are viewing the page from a different time zone.
To set today's date programmatically
now = new DateTime() ' increment by one day Calendar1.TodaysDate = now
See Also