ASP page to show different schedule on each day

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default ASP page to show different schedule on each day

    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!


    Matthew Louden Guest

  2. Similar Questions and Discussions

    1. Schedule Task Page Not Processing
      Using Coldfusion MX the Scheduled Task page does not process. I receive the following error when clicking the Scheduled Task link in the Admin panel...
    2. using php to show particular part of page
      I have a particular section of a page that I need to display if the variable being passed is a certain name. The the particular block of code that...
    3. HTML page does not show
      An HTML page with inbedded flash object and a relevant .swf file in the same folder which shows well on a local computer, but on an ISP server it...
    4. How to show an image on my page
      Hi folks, I use an access database with a textfield (ImagePathAndFile). In this textfield I store the full path to an image, for example:...
    5. Schedule a page --> run automacially?
      Is it possible to schedule an .ASPX page to run automatically, say every hour? N.B.
  3. #2

    Default Re: ASP page to show different schedule on each day

    One page'll be fine. VBScript, if that's what you use, is aware of what day
    of the week any date is. Take a look at the weekday function in your
    VBScript documentation.

    Ray at work

    "Matthew Louden" <jrefactors@hotmail.com> wrote in message
    news:%23IGHmSAoDHA.3256@tk2msftngp13.phx.gbl...
    > 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!
    >
    >

    Ray at Guest

  4. #3

    Default Re: ASP page to show different schedule on each day

    Create your database with a date field or even a text field for days. Then
    from your page, collect the record where the day value matches today's day.

    Mohamed


    "Matthew Louden" <jrefactors@hotmail.com> wrote in message
    news:#IGHmSAoDHA.3256@tk2msftngp13.phx.gbl...
    > 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!
    >
    >

    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003


    Mohamed Hosam Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139