in registration, i have to display dates chosen by user. so i have used calender.
but problem is that if one user has selected any date then if second user again selects same date then the nothing is printed in textbox. i think i am using wrong event handler for calender.
PLZ HELP
here is my code -->
- protected void Calendar1_SelectionChanged(object sender, EventArgs e)
- {
- System.DateTime myDate = new System.DateTime();
- myDate = Calendar1.SelectedDate;
- TextBox3.Text = myDate.ToString("dd/MM/yyyy");
- }

Priti KumariPosted Jun 27, 2014, 1:16 AM
http://www.c-sharpcorner.com/UploadFile/7d3362/calendar-control-in-Asp-Net/
Piyush chhabraPosted Jun 29, 2014, 2:44 AM