Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.52 KB

lab8.md

File metadata and controls

32 lines (23 loc) · 2.52 KB

Stars Badge Forks Badge Pull Requests Badge Issues Badge GitHub contributors Visitors

Don't forget to hit the ⭐ if you like this repo.

Lab 8: Data binding- Using calender control to filter data

Create an ASP.NET Web Application that implements a Calendar control that is used to filter dates for records that are fed in a GridView for display.... A Band Journal Search Page (ArtistJournal)

We add a calendar control to the Web Form which will be used to select dates which will be placed into textboxes

  • Use a single calendar control for the Start Date and the End Date...C# code checks for textbox contents and places the chosen date in the appropriate Start or End date textbox
    • The textbox entries are then used to filter records into a GridView
  • Note the use of two WHERE clauses
  • JournalDate >= TxtStart and JournalDate <=TxtEnd

Source code: 💾

Contribution 🛠️

Please create an Issue for any improvements, suggestions or errors in the content.

You can also contact me using Linkedin for any other queries or feedback.

Visitors