PC Review


Reply
Thread Tools Rate Thread

Displaying includes using FrontPage's WEBBOT tag

 
 
Mike Mize
Guest
Posts: n/a
 
      13th May 2004
I've got a problem that I'm trying to resolve with the way FrontPage
does server side includes. We have an IIS 5 server that originally had FPE
2000 then was later upgraded to FPE 2002.
When web authors use FrontPage to include local html files, FrontPage
inserts something like <--WEBBOT BOT="Include" U-Include="file.htm"
TAG="Body" -->. Sometimes there is a "startspan" at the end of this,
followed by some html, then a <--webbot... line that ends with "stopspan".
You're probably all familiar with this. When the author sees the document
in FrontPage it looks exactly like its supposed to. But when using a
browser to view the resultant page, the FrontPage supplied includes simply
don't show up.
When I try this on my workstation which is running the XP version of IIS
with FPE 2002 it works correctly. If I use the standard <==#include
file="file.html" --> on the server it works correctly. But for some reason
the FrontPage inserted tags don't. There has to be some sort of
configuration setting that I've missed, but I can't for the life of me find
it. Has anyone else ever run into this?

Mike Mize
California State University, Fresno


 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      13th May 2004
The FrontPage include page feature is not an SSI, it is a design time feature,
and the include is added to the page at publishing time, or when the include
page or the page with included content is saved on the live server.

I would have your clients run a recalculate hyperlinks on both their local and
remote webs and see if it clears the issue.
Also, have them publish from the client to the server afterwards.

hth


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer

"Mike Mize" <(E-Mail Removed)> wrote in message
news:SvQoc.13$(E-Mail Removed)...
> I've got a problem that I'm trying to resolve with the way FrontPage
> does server side includes. We have an IIS 5 server that originally had FPE
> 2000 then was later upgraded to FPE 2002.
> When web authors use FrontPage to include local html files, FrontPage
> inserts something like <--WEBBOT BOT="Include" U-Include="file.htm"
> TAG="Body" -->. Sometimes there is a "startspan" at the end of this,
> followed by some html, then a <--webbot... line that ends with "stopspan".
> You're probably all familiar with this. When the author sees the document
> in FrontPage it looks exactly like its supposed to. But when using a
> browser to view the resultant page, the FrontPage supplied includes simply
> don't show up.
> When I try this on my workstation which is running the XP version of IIS
> with FPE 2002 it works correctly. If I use the standard <==#include
> file="file.html" --> on the server it works correctly. But for some reason
> the FrontPage inserted tags don't. There has to be some sort of
> configuration setting that I've missed, but I can't for the life of me find
> it. Has anyone else ever run into this?
>
> Mike Mize
> California State University, Fresno
>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      13th May 2004
Make sure the page that you are using for the Include have standard opening tags that would be on a
normal page.

<html>
<title>
<head>
</head>
<body>
page content. content that is to be included on other pages.
</body>
</html>


When you use ASP SSI, those tags are not needed, but for FP they have to be included.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"Mike Mize" <(E-Mail Removed)> wrote in message news:SvQoc.13$(E-Mail Removed)...
> I've got a problem that I'm trying to resolve with the way FrontPage
> does server side includes. We have an IIS 5 server that originally had FPE
> 2000 then was later upgraded to FPE 2002.
> When web authors use FrontPage to include local html files, FrontPage
> inserts something like <--WEBBOT BOT="Include" U-Include="file.htm"
> TAG="Body" -->. Sometimes there is a "startspan" at the end of this,
> followed by some html, then a <--webbot... line that ends with "stopspan".
> You're probably all familiar with this. When the author sees the document
> in FrontPage it looks exactly like its supposed to. But when using a
> browser to view the resultant page, the FrontPage supplied includes simply
> don't show up.
> When I try this on my workstation which is running the XP version of IIS
> with FPE 2002 it works correctly. If I use the standard <==#include
> file="file.html" --> on the server it works correctly. But for some reason
> the FrontPage inserted tags don't. There has to be some sort of
> configuration setting that I've missed, but I can't for the life of me find
> it. Has anyone else ever run into this?
>
> Mike Mize
> California State University, Fresno
>
>



 
Reply With Quote
 
Mike Mize
Guest
Posts: n/a
 
      14th May 2004
I appreciate the comments from everyone. After these and a few more
searches in Google I finally figured out what was happening. The WEBBOT
pseudo-tag has a component (TAG="BODY") that appears to mean "only use the
stuff between <body> and </body>, which makes sense. Otherwise you could
end up with meta tags being redefined. Anyway, the web author only had the
html to define a table in his includes. No <body> or </body> tags and this
resulted in nothing being included. He assures me that mine is the only
server he's ever encountered that works this way. Oh well, it seems to be
fixed now. Thanks.

Mike Mize
California State University, Fresno

"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Make sure the page that you are using for the Include have standard

opening tags that would be on a
> normal page.
>
> <html>
> <title>
> <head>
> </head>
> <body>
> page content. content that is to be included on other pages.
> </body>
> </html>
>
>
> When you use ASP SSI, those tags are not needed, but for FP they have to

be included.
>
> --
> ==============================================
> Thomas A. Rowe (Microsoft MVP - FrontPage)
> WEBMASTER Resources(tm)
> http://www.ycoln-resources.com
> FrontPage Resources, WebCircle, MS KB Quick Links, etc.
> ==============================================
> To assist you in getting the best answers for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
>
> "Mike Mize" <(E-Mail Removed)> wrote in message

news:SvQoc.13$(E-Mail Removed)...
> > I've got a problem that I'm trying to resolve with the way FrontPage
> > does server side includes. We have an IIS 5 server that originally had

FPE
> > 2000 then was later upgraded to FPE 2002.
> > When web authors use FrontPage to include local html files,

FrontPage
> > inserts something like <--WEBBOT BOT="Include" U-Include="file.htm"
> > TAG="Body" -->. Sometimes there is a "startspan" at the end of this,
> > followed by some html, then a <--webbot... line that ends with

"stopspan".
> > You're probably all familiar with this. When the author sees the

document
> > in FrontPage it looks exactly like its supposed to. But when using a
> > browser to view the resultant page, the FrontPage supplied includes

simply
> > don't show up.
> > When I try this on my workstation which is running the XP version of

IIS
> > with FPE 2002 it works correctly. If I use the standard <==#include
> > file="file.html" --> on the server it works correctly. But for some

reason
> > the FrontPage inserted tags don't. There has to be some sort of
> > configuration setting that I've missed, but I can't for the life of me

find
> > it. Has anyone else ever run into this?
> >
> > Mike Mize
> > California State University, Fresno
> >
> >

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      14th May 2004
All FP Includes work this way, and it is not a server related issue. The client is thinking of
Server-Side Includes.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"Mike Mize" <(E-Mail Removed)> wrote in message news:J3Uoc.14$(E-Mail Removed)...
> I appreciate the comments from everyone. After these and a few more
> searches in Google I finally figured out what was happening. The WEBBOT
> pseudo-tag has a component (TAG="BODY") that appears to mean "only use the
> stuff between <body> and </body>, which makes sense. Otherwise you could
> end up with meta tags being redefined. Anyway, the web author only had the
> html to define a table in his includes. No <body> or </body> tags and this
> resulted in nothing being included. He assures me that mine is the only
> server he's ever encountered that works this way. Oh well, it seems to be
> fixed now. Thanks.
>
> Mike Mize
> California State University, Fresno
>
> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Make sure the page that you are using for the Include have standard

> opening tags that would be on a
> > normal page.
> >
> > <html>
> > <title>
> > <head>
> > </head>
> > <body>
> > page content. content that is to be included on other pages.
> > </body>
> > </html>
> >
> >
> > When you use ASP SSI, those tags are not needed, but for FP they have to

> be included.
> >
> > --
> > ==============================================
> > Thomas A. Rowe (Microsoft MVP - FrontPage)
> > WEBMASTER Resources(tm)
> > http://www.ycoln-resources.com
> > FrontPage Resources, WebCircle, MS KB Quick Links, etc.
> > ==============================================
> > To assist you in getting the best answers for FrontPage support see:
> > http://www.net-sites.com/sitebuilder/newsgroups.asp
> >
> > "Mike Mize" <(E-Mail Removed)> wrote in message

> news:SvQoc.13$(E-Mail Removed)...
> > > I've got a problem that I'm trying to resolve with the way FrontPage
> > > does server side includes. We have an IIS 5 server that originally had

> FPE
> > > 2000 then was later upgraded to FPE 2002.
> > > When web authors use FrontPage to include local html files,

> FrontPage
> > > inserts something like <--WEBBOT BOT="Include" U-Include="file.htm"
> > > TAG="Body" -->. Sometimes there is a "startspan" at the end of this,
> > > followed by some html, then a <--webbot... line that ends with

> "stopspan".
> > > You're probably all familiar with this. When the author sees the

> document
> > > in FrontPage it looks exactly like its supposed to. But when using a
> > > browser to view the resultant page, the FrontPage supplied includes

> simply
> > > don't show up.
> > > When I try this on my workstation which is running the XP version of

> IIS
> > > with FPE 2002 it works correctly. If I use the standard <==#include
> > > file="file.html" --> on the server it works correctly. But for some

> reason
> > > the FrontPage inserted tags don't. There has to be some sort of
> > > configuration setting that I've missed, but I can't for the life of me

> find
> > > it. Has anyone else ever run into this?
> > >
> > > Mike Mize
> > > California State University, Fresno
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
frontpage will not run on my machine unless i delete first webbot =?Utf-8?B?cGhpbA==?= Microsoft Frontpage 1 6th Jan 2006 10:32 AM
FrontPage 2003 - Webbot Query =?Utf-8?B?TWljaw==?= Microsoft Frontpage 7 12th Nov 2005 09:30 AM
Is webbot-action required in FORM to FrontPage Hosted site? =?Utf-8?B?U2NvdHRS?= Microsoft Frontpage 2 7th Nov 2004 07:08 AM
WEBBOT includes and .ASPX Tor Nordahl Microsoft ASP .NET 0 4th Nov 2003 09:49 PM
FrontPage Includes Earl Brown Microsoft Frontpage 1 16th Jul 2003 04:24 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:26 AM.