default month
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
how to change default current month of the calender?
-
how to change default current month of the calender?
You set the VisibleDate property. Example:
this.Calendar1.VisibleDate = DateTime.Today.AddMonths(3);
Declan Bright www.declanbright.com
-
You set the VisibleDate property. Example:
this.Calendar1.VisibleDate = DateTime.Today.AddMonths(3);
Declan Bright www.declanbright.com
Thanks