I want to display the dates in the selected month.
I have two dropdownlists in my page
In the first dorpdownlist i stored
..............
In the Second dropdownlist i stored
Now i when i click the month and year i want to display the dates in the selected month of the corresponding year.
Is there any option to display the dates like this. If anybody know please tell me.
thanks,
Suthish NairPosted Feb 4, 2011, 2:28 PM
So other members can easily find the answers.
Suthish NairPosted Feb 3, 2011, 4:41 AM
1. Convert.ToDateTime(DateTime.Now).ToString("dd")will give todays date.
eg: Convert.ToDateTime(DateTime.Now).ToString("dd") + "-" + drop1.SelectedItem.text + "-" + drop2.SelectedItem.textor looking for something else.