Display html page on day of week

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Display html page on day of week

    Hi,

    I am new to Html and have been assigned the job of creating a live noticeboard
    for a timetable. What I am trying to do is display only certain html pages on
    certain days of the week. for example:

    On Monday every day would be displayed i.e.Monday.htm through to Friday.htm
    then on Wednesday you would only get Wednesday.htm until Friday.htm.

    Is there away to do this in html

    Cheers

    Archikent Guest

  2. Similar Questions and Discussions

    1. Repeating Region Breaks HTML Page Display
      Unlike many other users, my repeating region mini-controls work. However, using the "+" button to make a new repeating row via Contibute (seems to...
    2. ASP.NET: Day / Work Week / Week / Month web calendar control with view like MS Outlook
      Hi!! Did Infragistics or some other company else provide a web calendar conrol with the features and look of Microsoft Outlook calendar? I mean...
    3. [PHP] Display HTML/PHP code on a web page
      --- Jason Paschal <j_paschal@hotmail.com> wrote: Try htmlentities() Chris ===== Become a better Web developer with the HTTP Developer's...
    4. Display Week
      All, I have a date column and i want to be able to enter the date, and then have that populate antoher field . e.g - Date of Visit is ...
    5. Calling a html page from an asp page then returning to the next statement on the original asp page
      Hi! I have an ASP page that calls excel to create a report. This works fine. Now I need to call a html calendar page to filter what rows are...
  3. #2

    Default Re: Display html page on day of week

    Not in pure HTML

    You could do it server-side, with a script that handles the HTML request
    and repsonds according to the day.

    Or, you could have a cron job on the server, which copies a day-specific
    HTML file over a specific file that the user client requests.

    Or, you could do it with JavaScript, which would be able to determine
    the day according to the local time-zone and then redirect to the local
    server file (or request and render it itself)

    Or, some other way... but not with HTML on its own, I'm afraid.

    Dan
    Dan Rumney Guest

  4. #3

    Default Re: Display html page on day of week

    No. You'll have to use a programming language.


    "Archikent" <webforumsuser@macromedia.com> wrote in message
    news:dqg0ph$o0d$1@forums.macromedia.com...
    > Hi,
    >
    > I am new to Html and have been assigned the job of creating a live
    > noticeboard
    > for a timetable. What I am trying to do is display only certain html
    > pages on
    > certain days of the week. for example:
    >
    > On Monday every day would be displayed i.e.Monday.htm through to
    > Friday.htm
    > then on Wednesday you would only get Wednesday.htm until Friday.htm.
    >
    > Is there away to do this in html
    >
    > Cheers
    >

    Cary 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