calendar

P

Prophet

I am using frames to on a page which has a calendar.
there is a header which changes the month in the frame, and the calendar
itself.
What I want to do is change the calendar every month to reflect the current
month.
What I am doing now is going in monthly and changing the target....jan.html
to feb.html, next month feb.html to march.html..etc
My hope is that I will not have to manualy update.
Any ideas???


thanks.

current code:

<HTML>
<HEAD>
</HEAD>

<frameset cols="60" framespacing="0" border="0" frameborder="0">
<frameset rows="92,84%" framespacing="0" border="0" frameborder="0">
<frame name="top" scrolling="no" noresize target="tres"
src="tresheader.html">
<frame name="tres" src="jan.html">

<noframes>
<body>
<p> this page uses frames, but your browser does not support them. </p>
</body>
</noframes>
</frameset>
</html>
 
S

Stefan B Rusynko

Change your target page name to thismonth.htm

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am using frames to on a page which has a calendar.
| there is a header which changes the month in the frame, and the calendar
| itself.
| What I want to do is change the calendar every month to reflect the current
| month.
| What I am doing now is going in monthly and changing the target....jan.html
| to feb.html, next month feb.html to march.html..etc
| My hope is that I will not have to manualy update.
| Any ideas???
|
|
| thanks.
|
| current code:
|
| <HTML>
| <HEAD>
| </HEAD>
|
| <frameset cols="60" framespacing="0" border="0" frameborder="0">
| <frameset rows="92,84%" framespacing="0" border="0" frameborder="0">
| <frame name="top" scrolling="no" noresize target="tres"
| src="tresheader.html">
| <frame name="tres" src="jan.html">
|
| <noframes>
| <body>
| <p> this page uses frames, but your browser does not support them. </p>
| </body>
| </noframes>
| </frameset>
| </html>
|
|
 
T

Thomas A. Rowe

You would save Feb.htm as ThisMonth.htm and then for March save as ThisMonth.htm, etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Prophet said:
but then I would have to update 'ThisMonth' on a Monthly basis

Stefan B Rusynko said:
Change your target page name to thismonth.htm

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am using frames to on a page which has a calendar.
| there is a header which changes the month in the frame, and the calendar
| itself.
| What I want to do is change the calendar every month to reflect the current
| month.
| What I am doing now is going in monthly and changing the target....jan.html
| to feb.html, next month feb.html to march.html..etc
| My hope is that I will not have to manualy update.
| Any ideas???
|
|
| thanks.
|
| current code:
|
| <HTML>
| <HEAD>
| </HEAD>
|
| <frameset cols="60" framespacing="0" border="0" frameborder="0">
| <frameset rows="92,84%" framespacing="0" border="0" frameborder="0">
| <frame name="top" scrolling="no" noresize target="tres"
| src="tresheader.html">
| <frame name="tres" src="jan.html">
|
| <noframes>
| <body>
| <p> this page uses frames, but your browser does not support them. </p>
| </body>
| </noframes>
| </frameset>
| </html>
|
|
 
P

Prophet

all of the months are pre-built and I want to be able to walk away from the
page for periods of time without having to update it.


Thomas A. Rowe said:
You would save Feb.htm as ThisMonth.htm and then for March save as
ThisMonth.htm, etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Prophet said:
but then I would have to update 'ThisMonth' on a Monthly basis

Stefan B Rusynko said:
Change your target page name to thismonth.htm

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am using frames to on a page which has a calendar.
| there is a header which changes the month in the frame, and the
calendar
| itself.
| What I want to do is change the calendar every month to reflect the
current
| month.
| What I am doing now is going in monthly and changing the
target....jan.html
| to feb.html, next month feb.html to march.html..etc
| My hope is that I will not have to manualy update.
| Any ideas???
|
|
| thanks.
|
| current code:
|
| <HTML>
| <HEAD>
| </HEAD>
|
| <frameset cols="60" framespacing="0" border="0" frameborder="0">
| <frameset rows="92,84%" framespacing="0" border="0" frameborder="0">
| <frame name="top" scrolling="no" noresize target="tres"
| src="tresheader.html">
| <frame name="tres" src="jan.html">
|
| <noframes>
| <body>
| <p> this page uses frames, but your browser does not support them.
</p>
| </body>
| </noframes>
| </frameset>
| </html>
|
|
 
T

Thomas A. Rowe

Then you would need to locate a JavaScript script that would load a specific page based on the month
or a write a custom server-side script to do the same.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Prophet said:
all of the months are pre-built and I want to be able to walk away from the page for periods of
time without having to update it.


Thomas A. Rowe said:
You would save Feb.htm as ThisMonth.htm and then for March save as ThisMonth.htm, etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Prophet said:
but then I would have to update 'ThisMonth' on a Monthly basis

Change your target page name to thismonth.htm

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am using frames to on a page which has a calendar.
| there is a header which changes the month in the frame, and the calendar
| itself.
| What I want to do is change the calendar every month to reflect the current
| month.
| What I am doing now is going in monthly and changing the target....jan.html
| to feb.html, next month feb.html to march.html..etc
| My hope is that I will not have to manualy update.
| Any ideas???
|
|
| thanks.
|
| current code:
|
| <HTML>
| <HEAD>
| </HEAD>
|
| <frameset cols="60" framespacing="0" border="0" frameborder="0">
| <frameset rows="92,84%" framespacing="0" border="0" frameborder="0">
| <frame name="top" scrolling="no" noresize target="tres"
| src="tresheader.html">
| <frame name="tres" src="jan.html">
|
| <noframes>
| <body>
| <p> this page uses frames, but your browser does not support them. </p>
| </body>
| </noframes>
| </frameset>
| </html>
|
|
 
H

Hasse

Try this cod
<table class=mainTable WIDTH=490 CELLSPACING=1 CELLPADDING=0 BORDER=0>
<tr>
<td CLASS="monthYearText monthYearRow" title="Raggelines Kalender!">
Mars 2006
</td>
<td class=s20> </td>
<td class=s20> </td>
<td class=s2>1</td>
<td class=s2>2</td>
<td class=s2>3</td>
<td class="s2 today">4</td>
<td class=s2>5</td>
<td class=s2>6</td>
<td class=s2>7</td>
<td class=s2>8</td>
<td class=s2>9</td>
<td class=s2>10</td>
<td class=s2>11</td>
<td class=s2>12</td>
<td class=s2>13</td>
<td class=s2>14</td>
<td class=s2>15</td>
<td class=s2>16</td>
<td class=s2>17</td>
<td class=s2>18</td>
<td class=s2>19</td>
<td class=s2>20</td>
<td class=s2>21</td>
<td class=s2>22</td>
<td class=s2>23</td>
<td class=s2>24</td>
<td class=s2>25</td>
<td class=s2>26</td>
<td class=s2>27</td>
<td class=s2>28</td>
<td class=s2>29</td>
<td class=s2>30</td>
<td class=s2>31</td>
<td class=s20> </td>
<td class=s20> </td>
<td class=s20> </td>
<td class=s20> </td>
<td class=s20> </td>
</tr>

"Prophet" skrev:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top