calender
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
How to change the calender in year wise....For example if April 2007 is there in title of calender, i want to cahnge it as in year wise i.e. April 2006, April 2005 ................
With Regards, Samson
Do u want the year scroll in calender??? If that is the problem then use this: Take 2 link buttons << and >> and write this code: private void linkbtnNextYear_Click(object sender, System.EventArgs e) { calDate.SelectedDate = calDate.SelectedDate.AddYears(1); calDate.VisibleDate = calDate.SelectedDate; } private void linkbtnPreYear_Click(object sender, System.EventArgs e) { calDate.SelectedDate = calDate.SelectedDate.AddYears(-1); calDate.VisibleDate = calDate.SelectedDate; } Hope this helps u...