ASP page to show different schedule on each day

  • Thread starter Thread starter Matthew Louden
  • Start date Start date
M

Matthew Louden

I want to create ASP page that shows the schedule of TV station. Since each
day's (Monday - Sunday) schedule is different, and I want each day will
display the schedule on that day of a week. I wonder if I need to create 7
different ASP pages and call different one on each day?
This is just my idea, but I think this is not a good solution.

Please advise!
 
Use a querystring to indicate to the page which page you want displayed.
eg TVGuide.aspx?day=monday
A
 
Store the different daily information in a DB. Write code that determines
the day of the week and read that day's data from the DB and display it on
the page.
 
Back
Top