473,395 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

include page based on week of year.

I have to update a page every week. I get the page ahead of time so I used
the "scheduled includes" webbot in Frontpage only to find that I would have
to refresh the page every week to have it work. That is silly, it should run
by itself. so...
I asked the question in the FP group and I was offered this pseudocode
to do it by month which would work if it's possible to do it by week without
writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for each
week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?
Jul 22 '05 #1
21 1879
".:mmac:." <lost@sea> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I used
the "scheduled includes" webbot in Frontpage only to find that I would have to refresh the page every week to have it work. That is silly, it should run by itself. so...
I asked the question in the FP group and I was offered this pseudocode
to do it by month which would work if it's possible to do it by week without writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for each week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?

Use the DatePart function. Here's the online documentation:
http://www.msdn.microsoft.com/librar...ctdatepart.asp
Jul 22 '05 #2
".:mmac:." <lost@sea> wrote in message
news:#J**************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I used
the "scheduled includes" webbot in Frontpage only to find that I would have to refresh the page every week to have it work. That is silly, it should run by itself. so...
I asked the question in the FP group and I was offered this pseudocode
to do it by month which would work if it's possible to do it by week without writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for each week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?

Will January 1 - 7 always be Week 1?

Will Week 53 always consist of just one or two days?

Jul 22 '05 #3
Are the includes just generating static HTML (as is hinted in the later part
of the post)?

If so use script to compute the name of the file based on the date and use
the filesystem object to read the contents, then write it out to the client
(may be able to use server.execute as well). If the included html is the
same for all pages then you might even want to cache it in an application
variable and only read the file on the first day of the week.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
".:mmac:." <lost@sea> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I used
the "scheduled includes" webbot in Frontpage only to find that I would have to refresh the page every week to have it work. That is silly, it should run by itself. so...
I asked the question in the FP group and I was offered this pseudocode
to do it by month which would work if it's possible to do it by week without writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for each week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?

Jul 22 '05 #4
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:w7********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:#J**************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I used the "scheduled includes" webbot in Frontpage only to find that I would

have
to refresh the page every week to have it work. That is silly, it should

run
by itself. so...
I asked the question in the FP group and I was offered this pseudocode to do it by month which would work if it's possible to do it by week

without
writing 52 seperate lines, one for each week which would change each year and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for

each
week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?

Will January 1 - 7 always be Week 1?

Will Week 53 always consist of just one or two days?


This will generate an "include file" statement.

<%
Dim incl
incl = "<!--#include file=" & Chr(34) & "w##.htm" & Chr(34) & "-->"
Dim week
week = Replace(incl,"##",Int((DatePart("y",Date())+6)/7))
Response.Write week & vbCrLf
%>

However, AFAIK, you can't generate an "include file" from within ASP then
have it do its thing.

"... server side include files are inserted into their holding file before
any of the holding file is ... processed by ASP..." --
http://www.codefixer.com/tutorials/dynamic_includes.asp
Jul 22 '05 #5
[snip]

However, instead of generating an "include file", you could just open the
file via FSO:

<% Option Explicit
'*
Dim strOTF
strOTF = Request.ServerVariables("PATH_TRANSLATED")
strOTF = Left(strOTF,InStrRev(strOTF,"\"))
strOTF = strOTF & "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FilExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>
Jul 22 '05 #6

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:w7********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:#J**************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I
used
the "scheduled includes" webbot in Frontpage only to find that I would

have
to refresh the page every week to have it work. That is silly, it should

run
by itself. so...
I asked the question in the FP group and I was offered this
pseudocode
to do it by month which would work if it's possible to do it by week

without
writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for

each
week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?

Will January 1 - 7 always be Week 1?

Will Week 53 always consist of just one or two days?


yes , for this application it will.
week 53 would be bundled into week 52
Jul 22 '05 #7
"mmac" <no@thank.you> wrote in message
news:uK**************@TK2MSFTNGP14.phx.gbl...
Will January 1 - 7 always be Week 1?

Will Week 53 always consist of just one or two days?


yes , for this application it will.
week 53 would be bundled into week 52


[snip]

Then insert this line just before "Dim objFSO" in the solution I posted
earlier:

strOTF = Replace(strOTF,"\w53.htm","\w52.htm")
Jul 22 '05 #8
I tried the example you gave and it generates the following line this week :
<!--#include file="w3.htm"-->
which looks great but yet there is nothing included in the page?!
the page is an ASP page but the included page is htm so the warning about
dynamic include wouldn't apply right?
What did I miss?
I am going to try your other (FSO) example next but this was so easy I don't
see what I could have missed.
Help?
> I have to update a page every week. I get the page ahead of time so I used > the "scheduled includes" webbot in Frontpage only to find that I would

have
> to refresh the page every week to have it work. That is silly, it
> should

run
> by itself. so...
> I asked the question in the FP group and I was offered this pseudocode > to do it by month which would work if it's possible to do it by week

without
> writing 52 seperate lines, one for each week which would change each year > and have to be rewritten each year.
>
> <% If Now()>date("1/3/2005") then %>
> <!-- #include file="includes/mar.asp" -->
> <% elseif Now()>date("1/2/2005") then %>
> <!-- #include file="includes/feb.asp" -->
> <% else %>
> <!-- #include file="includes/jan.asp" -->
> <% endif %>
>
> Now the goal for me would be something that would calculate which week of > the year (any year) it is.
> i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for

each
> week.
> That way all I have to do is save a wx.htm file where x= week of year.
> so ... how can I caclulate what week of the year it is?

Will January 1 - 7 always be Week 1?

Will Week 53 always consist of just one or two days?


This will generate an "include file" statement.

<%
Dim incl
incl = "<!--#include file=" & Chr(34) & "w##.htm" & Chr(34) & "-->"
Dim week
week = Replace(incl,"##",Int((DatePart("y",Date())+6)/7))
Response.Write week & vbCrLf
%>

However, AFAIK, you can't generate an "include file" from within ASP then
have it do its thing.

"... server side include files are inserted into their holding file before
any of the holding file is ... processed by ASP..." --
http://www.codefixer.com/tutorials/dynamic_includes.asp

Jul 22 '05 #9
The included file is a doc file, created by a secretary, converted to a .htm
web page within Word and then dropped into a directory on the server and
then it's my job to "include" it on the page. It isn't generated by any
automated process.
If I understand the question.
The VB script solution is testing the limit of my knowledge but I am keeping
up so far. :-)

"Mark Schupp" <no****@nospam.com> wrote in message
news:eW****************@TK2MSFTNGP15.phx.gbl...
Are the includes just generating static HTML (as is hinted in the later
part
of the post)?

If so use script to compute the name of the file based on the date and use
the filesystem object to read the contents, then write it out to the
client
(may be able to use server.execute as well). If the included html is the
same for all pages then you might even want to cache it in an application
variable and only read the file on the first day of the week.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
".:mmac:." <lost@sea> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I
used
the "scheduled includes" webbot in Frontpage only to find that I would

have
to refresh the page every week to have it work. That is silly, it should

run
by itself. so...
I asked the question in the FP group and I was offered this
pseudocode
to do it by month which would work if it's possible to do it by week

without
writing 52 seperate lines, one for each week which would change each year
and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of
the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for

each
week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?


Jul 22 '05 #10
This script generated an error that looks familar to me as a silly mistake
in my application of it but I can't recall what it was:
Microsoft VBScript compilation error '800a0400'

Expected statement

/OYB/Test.asp, line 40

Option Explicitand it points to the First "O" in Option
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:0v********************@comcast.com...
"mmac" <no@thank.you> wrote in message
news:uK**************@TK2MSFTNGP14.phx.gbl...
> Will January 1 - 7 always be Week 1?
>
> Will Week 53 always consist of just one or two days?


yes , for this application it will.
week 53 would be bundled into week 52


[snip]

Then insert this line just before "Dim objFSO" in the solution I posted
earlier:

strOTF = Replace(strOTF,"\w53.htm","\w52.htm")

Jul 22 '05 #11
".:mmac:." <no@thank.you> wrote in message
news:OV**************@TK2MSFTNGP09.phx.gbl...
This script generated an error that looks familar to me as a silly mistake
in my application of it but I can't recall what it was:
Microsoft VBScript compilation error '800a0400'

Expected statement

/OYB/Test.asp, line 40

Option Explicitand it points to the First "O" in Option
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:0v********************@comcast.com...
"mmac" <no@thank.you> wrote in message
news:uK**************@TK2MSFTNGP14.phx.gbl...

> Will January 1 - 7 always be Week 1?
>
> Will Week 53 always consist of just one or two days?

yes , for this application it will.
week 53 would be bundled into week 52


[snip]

Then insert this line just before "Dim objFSO" in the solution I posted
earlier:

strOTF = Replace(strOTF,"\w53.htm","\w52.htm")


Oops, I used the wrong variable a I didn't test it; try this:

Dim strHTM
strHTM = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strHTM = Replace(strHTM,"w53.htm","w52.htm")

Jul 22 '05 #12
Ummm... Where?
It looks like you are replacing the strOTF with strHTM but the strOTF is
used in more places. Should I replace all?
Where precisely should I replace it? i.e. the Response.Write still writes
the strOTF var.
here is the script as it is now,
<% Option Explicit
'*
Dim strOTF
strOTF = Request.ServerVariables("PATH_TRANSLATED")
strOTF = Left(strOTF,InStrRev(strOTF,"\"))
strOTF = strOTF & "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FilExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

BTW, there is no Line 40 on the page as written, the server must be
recompiling something so I don't know where to look for Line 40 as refernced
in the error message.
This script generated an error that looks familar to me as a silly
mistake
in my application of it but I can't recall what it was:
Microsoft VBScript compilation error '800a0400'

Expected statement

/OYB/Test.asp, line 40

Option Explicitand it points to the First "O" in Option
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:0v********************@comcast.com...
> "mmac" <no@thank.you> wrote in message
> news:uK**************@TK2MSFTNGP14.phx.gbl...
>>
>> > Will January 1 - 7 always be Week 1?
>> >
>> > Will Week 53 always consist of just one or two days?
>>
>> yes , for this application it will.
>> week 53 would be bundled into week 52
>
> [snip]
>
> Then insert this line just before "Dim objFSO" in the solution I posted
> earlier:
>
> strOTF = Replace(strOTF,"\w53.htm","\w52.htm")
>


Oops, I used the wrong variable a I didn't test it; try this:

Dim strHTM
strHTM = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strHTM = Replace(strHTM,"w53.htm","w52.htm")

Jul 22 '05 #13
".:mmac:." <lost@sea> wrote in message
news:uf**************@TK2MSFTNGP12.phx.gbl...
Ummm... Where?
It looks like you are replacing the strOTF with strHTM but the strOTF is
used in more places. Should I replace all?
Where precisely should I replace it? i.e. the Response.Write still writes
the strOTF var.
here is the script as it is now,
<% Option Explicit
'*
Dim strOTF
strOTF = Request.ServerVariables("PATH_TRANSLATED")
strOTF = Left(strOTF,InStrRev(strOTF,"\"))
strOTF = strOTF & "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FilExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

BTW, there is no Line 40 on the page as written, the server must be
recompiling something so I don't know where to look for Line 40 as refernced in the error message.


[snip]

Sorry, about "strHTM"; I must have had it left over from something.

The above is missing an "e" in "FileExists"; perhaps that's the error.

Also, I'd forgottne about Server.MapPath() -- brain cramp.

Try this and let me know.

<% Option Explicit
'*
Dim strOTF
strOTF = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"w53.htm","w52.htm")
strOTF = Server.MapPath(strOTF)
Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>
Jul 22 '05 #14
error still,

Microsoft VBScript compilation error '800a0400'
Expected statement
/OYB/Test1.asp, line 39
Option Explicit
^
Also there is NO line 39 in the code, Thats annoying. It's like I'm not
closing a tag.
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:O9********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:uf**************@TK2MSFTNGP12.phx.gbl...
Ummm... Where?
It looks like you are replacing the strOTF with strHTM but the strOTF is
used in more places. Should I replace all?
Where precisely should I replace it? i.e. the Response.Write still writes
the strOTF var.
here is the script as it is now,
<% Option Explicit
'*
Dim strOTF
strOTF = Request.ServerVariables("PATH_TRANSLATED")
strOTF = Left(strOTF,InStrRev(strOTF,"\"))
strOTF = strOTF & "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FilExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

BTW, there is no Line 40 on the page as written, the server must be
recompiling something so I don't know where to look for Line 40 as

refernced
in the error message.


[snip]

Sorry, about "strHTM"; I must have had it left over from something.

The above is missing an "e" in "FileExists"; perhaps that's the error.

Also, I'd forgottne about Server.MapPath() -- brain cramp.

Try this and let me know.

<% Option Explicit
'*
Dim strOTF
strOTF = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"w53.htm","w52.htm")
strOTF = Server.MapPath(strOTF)
Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

Jul 22 '05 #15
One more note,
If I comment out "Option Explicit" then I get the path to the file printed
on the web page
i.e. E:/www/domain.com/directory/w3.htm
SO that looks like the script is doing the job but the presentation is
wrong. Hmmm.

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:O9********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:uf**************@TK2MSFTNGP12.phx.gbl...
Ummm... Where?
It looks like you are replacing the strOTF with strHTM but the strOTF is
used in more places. Should I replace all?
Where precisely should I replace it? i.e. the Response.Write still writes
the strOTF var.
here is the script as it is now,
<% Option Explicit
'*
Dim strOTF
strOTF = Request.ServerVariables("PATH_TRANSLATED")
strOTF = Left(strOTF,InStrRev(strOTF,"\"))
strOTF = strOTF & "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FilExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

BTW, there is no Line 40 on the page as written, the server must be
recompiling something so I don't know where to look for Line 40 as

refernced
in the error message.


[snip]

Sorry, about "strHTM"; I must have had it left over from something.

The above is missing an "e" in "FileExists"; perhaps that's the error.

Also, I'd forgottne about Server.MapPath() -- brain cramp.

Try this and let me know.

<% Option Explicit
'*
Dim strOTF
strOTF = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"w53.htm","w52.htm")
strOTF = Server.MapPath(strOTF)
Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>

Jul 22 '05 #16
".:mmac:." <lost@sea> wrote in message
news:#i**************@TK2MSFTNGP15.phx.gbl...
One more note,
If I comment out "Option Explicit" then I get the path to the file printed
on the web page
i.e. E:/www/domain.com/directory/w3.htm
SO that looks like the script is doing the job but the presentation is
wrong. Hmmm.

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:O9********************@comcast.com...


[snip]
Try this and let me know.

<% Option Explicit
'*
Dim strOTF
strOTF = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"w53.htm","w52.htm")
strOTF = Server.MapPath(strOTF)
Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>


Did you add any other code above my script?
"Option Explicit" should be the first line in the script or try:

<%@ Language="VBScript" %>
<% Option Explicit
The reason you see the path+filename is because of the first Response.Write
(for testing).

If the file doesn't exist then the script won't do anything more per:

"If objFSO.FileExists(strOTF) Then"

Does the file exist?

Also, please try the latest version which uses "Server.MapPath()".
Jul 22 '05 #17
The other respondents are working with you on the code to read and send the
file contents. Just one note:

If the html files are being created from word documents by word then they
will contain a complete HTML document. If you include that in a page that
also generates an HTML document then you will end up with duplicate <HTML>,
</HTML>, <BODY>, </BODY> tags. This may confuse the browser. You will need
to extract the data that you want to embed in your page from the HTML
document that you read in.

If you are only going to display the page as it was created by word then
just do a response.redirect to it once you determine the path.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
".:mmac:." <no@thank.you> wrote in message
news:ug****************@TK2MSFTNGP12.phx.gbl...
The included file is a doc file, created by a secretary, converted to a ..htm web page within Word and then dropped into a directory on the server and
then it's my job to "include" it on the page. It isn't generated by any
automated process.
If I understand the question.
The VB script solution is testing the limit of my knowledge but I am keeping up so far. :-)

"Mark Schupp" <no****@nospam.com> wrote in message
news:eW****************@TK2MSFTNGP15.phx.gbl...
Are the includes just generating static HTML (as is hinted in the later
part
of the post)?

If so use script to compute the name of the file based on the date and use the filesystem object to read the contents, then write it out to the
client
(may be able to use server.execute as well). If the included html is the
same for all pages then you might even want to cache it in an application variable and only read the file on the first day of the week.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
".:mmac:." <lost@sea> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I have to update a page every week. I get the page ahead of time so I
used
the "scheduled includes" webbot in Frontpage only to find that I would

have
to refresh the page every week to have it work. That is silly, it should
run
by itself. so...
I asked the question in the FP group and I was offered this
pseudocode
to do it by month which would work if it's possible to do it by week

without
writing 52 seperate lines, one for each week which would change each

year and have to be rewritten each year.

<% If Now()>date("1/3/2005") then %>
<!-- #include file="includes/mar.asp" -->
<% elseif Now()>date("1/2/2005") then %>
<!-- #include file="includes/feb.asp" -->
<% else %>
<!-- #include file="includes/jan.asp" -->
<% endif %>

Now the goal for me would be something that would calculate which week of the year (any year) it is.
i.e. Jan 1-7 = w1.htm , Jan 8-15= w2.htm etc. and return a Wx.htm for

each
week.
That way all I have to do is save a wx.htm file where x= week of year.
so ... how can I caclulate what week of the year it is?



Jul 22 '05 #18
Thanks for your persistance with this.
here is the whole page of code:

<%@ Language="VBScript" %>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Using FSO</title>
<meta name="Microsoft Theme" content="111, default">
<meta name="Microsoft Border" content="tlb, default">
</head><body>

<p>&nbsp;

<% 'Option Explicit
' This Works!!! 1-17-05
'*
Dim strOTF
strOTF = "Week" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"Week53.htm","Week52.htm")
strOTF = Server.MapPath(strOTF)
' Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>
</p></body></html>
If I comment out the "Option Explicit" as shown above, the page runs fine
now, (not sure what changed, but it works, thank you. :~}but..

If I don't comment out the "Option Explicit" I get this error:
Microsoft VBScript compilation error '800a0400'
Expected statement
/OYB/Test1.asp, line 41
Option Explicit
^
Is this going to be a problem?

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:Pp********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:#i**************@TK2MSFTNGP15.phx.gbl...
One more note,
If I comment out "Option Explicit" then I get the path to the file
printed
on the web page
i.e. E:/www/domain.com/directory/w3.htm
SO that looks like the script is doing the job but the presentation is
wrong. Hmmm.

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:O9********************@comcast.com...


[snip]
> Try this and let me know.
>
> <% Option Explicit
> '*
> Dim strOTF
> strOTF = "w" & Int((DatePart("y",Date())+6)/7) & ".htm"
> strOTF = Replace(strOTF,"w53.htm","w52.htm")
> strOTF = Server.MapPath(strOTF)
> Response.Write strOTF & "<br>"
> '* remove the above line after testing.
> '*
> Dim objFSO
> Set objFSO = CreateObject("Scripting.FileSystemObject")
> If objFSO.FileExists(strOTF) Then
> Dim objOTF
> Set objOTF = objFSO.OpenTextFile(strOTF,1)
> strOTF = objOTF.ReadAll()
> Set objOTF = Nothing
> End If
> Set objFSO = Nothing
> '*
> Response.Write strOTF
> %>


Did you add any other code above my script?
"Option Explicit" should be the first line in the script or try:

<%@ Language="VBScript" %>
<% Option Explicit
The reason you see the path+filename is because of the first
Response.Write
(for testing).

If the file doesn't exist then the script won't do anything more per:

"If objFSO.FileExists(strOTF) Then"

Does the file exist?

Also, please try the latest version which uses "Server.MapPath()".

Jul 22 '05 #19
".:mmac:." <lost@sea> wrote in message
news:#a**************@tk2msftngp13.phx.gbl...
Thanks for your persistance with this.
here is the whole page of code:

<%@ Language="VBScript" %>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Using FSO</title>
<meta name="Microsoft Theme" content="111, default">
<meta name="Microsoft Border" content="tlb, default">
</head><body>

<p>&nbsp;

<% 'Option Explicit
' This Works!!! 1-17-05
'*
Dim strOTF
strOTF = "Week" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"Week53.htm","Week52.htm")
strOTF = Server.MapPath(strOTF)
' Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>
</p></body></html>
If I comment out the "Option Explicit" as shown above, the page runs fine
now, (not sure what changed, but it works, thank you. :~}but..

If I don't comment out the "Option Explicit" I get this error:
Microsoft VBScript compilation error '800a0400'
Expected statement
/OYB/Test1.asp, line 41
Option Explicit
^
Is this going to be a problem?


[snip]

"Option Explicit" is used to ensure that all variables are declared before
they're used.

If it only works without then remove it.

I'd probably write it like the following:

<%@ Language="VBScript" %>
<% Option Explicit
'*
Dim strOTF
strOTF = "Week" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"Week53.htm","Week52.htm")
strOTF = Server.MapPath(strOTF)
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
%>
<html>
<head>
<title>Using FSO</title>
</head>
<body>
<p><%=strOTF%></p>
</body>
</html>
Jul 22 '05 #20
I see... put it before all the HTML and then call the result?
I moved it and now I can leave "Option Explicit" alone (uncommented) and it
works perfect!
Must be neccessary to put it above all the html processing?
" <%=strOTF%> " is a powerful command! What is that? Does that mean to put
the contents of "strOTF" here?
However it works, this is great and has saved me a real nusiance every week.

Thank You so much for your help.
-mmac

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:u6********************@comcast.com...
".:mmac:." <lost@sea> wrote in message
news:#a**************@tk2msftngp13.phx.gbl...
Thanks for your persistance with this.
here is the whole page of code:

<%@ Language="VBScript" %>
<html><head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Using FSO</title>
<meta name="Microsoft Theme" content="111, default">
<meta name="Microsoft Border" content="tlb, default">
</head><body>

<p>&nbsp;

<% 'Option Explicit
' This Works!!! 1-17-05
'*
Dim strOTF
strOTF = "Week" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"Week53.htm","Week52.htm")
strOTF = Server.MapPath(strOTF)
' Response.Write strOTF & "<br>"
'* remove the above line after testing.
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
'*
Response.Write strOTF
%>
</p></body></html>
If I comment out the "Option Explicit" as shown above, the page runs fine
now, (not sure what changed, but it works, thank you. :~}but..

If I don't comment out the "Option Explicit" I get this error:
Microsoft VBScript compilation error '800a0400'
Expected statement
/OYB/Test1.asp, line 41
Option Explicit
^
Is this going to be a problem?


[snip]

"Option Explicit" is used to ensure that all variables are declared before
they're used.

If it only works without then remove it.

I'd probably write it like the following:

<%@ Language="VBScript" %>
<% Option Explicit
'*
Dim strOTF
strOTF = "Week" & Int((DatePart("y",Date())+6)/7) & ".htm"
strOTF = Replace(strOTF,"Week53.htm","Week52.htm")
strOTF = Server.MapPath(strOTF)
'*
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strOTF) Then
Dim objOTF
Set objOTF = objFSO.OpenTextFile(strOTF,1)
strOTF = objOTF.ReadAll()
Set objOTF = Nothing
End If
Set objFSO = Nothing
%>
<html>
<head>
<title>Using FSO</title>
</head>
<body>
<p><%=strOTF%></p>
</body>
</html>

Jul 22 '05 #21
".:mmac:." <no@thank.you> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
I see... put it before all the HTML and then call the result?
I moved it and now I can leave "Option Explicit" alone (uncommented) and it works perfect!
Must be neccessary to put it above all the html processing?
http://www.devguru.com/Technologies/...nexplicit.html
" <%=strOTF%> " is a powerful command! What is that? Does that mean to put
the contents of "strOTF" here?
Yes.
However it works, this is great and has saved me a real nusiance every week.
Thank You so much for your help.
You're welcome.
-mmac

Jul 22 '05 #22

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: androtech | last post by:
Hello, I'm looking for a function that returns a date range for a specified week number of the year. I'm not able to find functions like this anywhere. Any pointers/help would be much...
7
by: Shuffs | last post by:
Could someone, anyone please tell me what I need to amend, to get this function to take Sunday as the first day of the week? I amended the Weekday parts to vbSunday (in my code, not the code...
7
by: peter | last post by:
I have created a MS Access query where one of the fields displays the week number. The field is a date value that uses the ww format to display the week number. However, when I try to create a...
9
by: Ray | last post by:
I need to convert the normal calendar to show the week no., the period no. and the financial year. The financial year format is as follows:- Date start: 2 May, 2005 7 days a week, 4 weeks a...
3
by: Steph. | last post by:
Hi, When I use the "Calendar.GetWeekOfYear" function (with "fr-BE" as CultureInfo and Monday as the first day of week) I get : Friday 31/12/2004 : week = 53
5
by: bruce24444 | last post by:
I have a database which assigns warranty claims to people with a main screen showing number of files assigned to each person. The number assigned shows day, week, month and year numbers so they can...
10
by: nicolai | last post by:
There are plenty of scripts that load html into a page based on the day of the week, month, or randomly, but I would like to load a different page every day of the year. I would like to give a...
3
by: =?Utf-8?B?cm9kY2hhcg==?= | last post by:
hey all, is there a way if you are given a Year and a Week an easy way to go back say 26 weeks ago from given year/week. for example, given: 2008/16 26 weeks prior is: 2007/43 thanks,
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.