TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Piyush chhabra
NA
83
16.7k
calender events in .net with c#
Jun 26 2014 9:01 AM
i am making a dynamic website in which i have made a registration page.
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");
}
Reply
Answers (
2
)
How to Create Auto Update Application in c#.
How to use configuration files in C# class library?