Include command`

  • Thread starter Thread starter Teriel9
  • Start date Start date
T

Teriel9

Is the "Include" command a Frontpage extension or can it be used as standard
HTML
Thanks
Teriel9
 
If you mean the FrontPage Include File, it *is* a FrontPage webbed, but
does not require FrontPage extensions.
Includes made with the Include file are saved when the page is saved.
 
Hi Ron,
Many thanks for your prompt response.
Do I assume then that there is no standard HTML command to include a page or
file in a web page.
Thanks
Teriel9
 
If you use server side includes (SSI), then there are:

<!-- #include file="path/to/includedfile.inc" -->
<!-- #include virtual="/path/to/includedfile.inc" -->

SSI will only work in asp.NET, asp, pup, and .shtm and .shtml pages. SSI
will NOT work in any page that requires FrontPage extensions at run time.
..htm pages will work with SSI only if the server is set up to allow it.

In the above path/to/ represents the relative path from the page to the
included page. Some servers will not allow parent paths ( ..\ etc)

/path/to/ represents the path to the included page from the website root
folder.

The only other way to include a page is to use an iFrame.
 
Back
Top