calendar
-
Hi, everybody!! I'm doing a project on C# web application. I need to design a web page and a search engine. I need to design a search engine using the calendar to select the particular date we have click. I have drag and pull the calendar icon. Anyone could tell me the code that if i select on the date i've choose it will show me the database. Anyone who can help me with this.Thank! Your help will be appreciated.. Cheers!
-
Hi, everybody!! I'm doing a project on C# web application. I need to design a web page and a search engine. I need to design a search engine using the calendar to select the particular date we have click. I have drag and pull the calendar icon. Anyone could tell me the code that if i select on the date i've choose it will show me the database. Anyone who can help me with this.Thank! Your help will be appreciated.. Cheers!
Hi there, What you might need to do is to create an event handler for the
SelectionChanged
event of the Calendar[^] control. In the event handler, you can get the selected date from theSelectedDate
property and execute an SQL command to query data. If you don't know about the ADO.NET, then the documentation[^] can get you started.