how to display the next month
-
i want to display the next month in the calendar but because i have written the code like "calendar1.visible =false" in the "Calendar1_SelectionChanged1" method i am unable to perform the above mentioned operation. how can i display the next month
-
i want to display the next month in the calendar but because i have written the code like "calendar1.visible =false" in the "Calendar1_SelectionChanged1" method i am unable to perform the above mentioned operation. how can i display the next month
Calendar1.Date = new DateTime( int.Parse(DateTime.Now.ToString("yyyy")), int.Parse(DateTime.Now.ToString("MM"))+1, int.Parse(DateTime.Now.ToString("dd")));
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post.
-
i want to display the next month in the calendar but because i have written the code like "calendar1.visible =false" in the "Calendar1_SelectionChanged1" method i am unable to perform the above mentioned operation. how can i display the next month
-
Calendar1.Date = new DateTime( int.Parse(DateTime.Now.ToString("yyyy")), int.Parse(DateTime.Now.ToString("MM"))+1, int.Parse(DateTime.Now.ToString("dd")));
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post.
it is showing an error like "'System.Web.UI.WebControls.Calendar' does not contain a definition for 'Date' and no extension method 'Date' accepting a first argument of type 'System.Web.UI.WebControls.Calendar' could be found (are you missing a using directive or an assembly reference?)"