Reputation: 39
How can i display the task details performed within a particular date when i click on said date in the calendar control.
Example:
I am using C# and ASP.NET (2008)
Upvotes: 1
Views: 360
Reputation: 187
store task with date in database. write select statement that has date parameter and return task on given parameter. Onclick event return data from executed procedure and display result.
Upvotes: 2
Reputation: 1684
Assuming you have a table with tasks and assigned dates, create a DataSet with a TableAdapter for said table, and use an ObjectDataSource on your page that takes the selected calendar day as a param and returns the rows to a GridView.
Upvotes: 0