Two Calendar Controls
-
I have two calendar controls on same page,if month selection on title bar of calendar is changed on one calendar second calendar's month automatically get changed
-
I have two calendar controls on same page,if month selection on title bar of calendar is changed on one calendar second calendar's month automatically get changed
So, what is the problem? You didn't mentioned your problem. :wtf:
-
I have two calendar controls on same page,if month selection on title bar of calendar is changed on one calendar second calendar's month automatically get changed
-
I have two calendar controls on same page,if month selection on title bar of calendar is changed on one calendar second calendar's month automatically get changed
Mansi Arora wrote:
changed on one calendar second calendar's month automatically get changed
This will help you.
protected void Calendar1_VisibleMonthChanged(object sender, MonthChangedEventArgs e)
{
Calendar2.TodaysDate = e.NewDate;
}