Hi All,
I have calender control and listbox control.
I select date from calender and on selection i store it in listbox.
As follows:
protected void clndr_SelectionChanged(object sender, EventArgs e)
{
DateTime dtstart = Convert.ToDateTime(clndr.SelectedDate.ToString());
DateTime dttoprnt = dtstart;
litems.Add(dttoprnt.ToString("dd-MM-yyyy"));
}
Now I want to show n number of calender and respective listbox from dynamic input of value for n.
suppose i get n=3 as input then 3 calenders and 3 listbox for each respective caleneder.
Now i want solution as:
How I will print 3 calnders and respective list boxes in a loop.
Please help me for such scene.
Regards,
Jayesh(From India,Mumbai)
Go to the complete details ...