Posted by Disco Octopus on 11/23/05 00:44
Michael Sgier wrote:
> Hello
> ssi would be ok...how would that look like in SSI?
> The sitemap would be a small page on top of the content pages.
> Thanks
> Michael
>
>
> Disco Octopus wrote:
>> Michael Sgier wrote:
>>
>>>Hello
>>> I want to make a little html page as sitemap. So if you click on a
>>>link the page below should change and the sitemap still remain on top.
>>>I know with frames it would be _mainFrame but i ditched all frames and
>>>would be grateful for help here with the a href target tag.
>>>THANKS and regards
>>>Michael
>>
>> I would look into server side includes.
>> http://www.google.com/custom?q=Server+Side+Includes
>>
>> See if your host allows for this.
>>
>> Instead of a frame as your sitemap (I assume you mean menu), you can put it
>> into a file that is included in all your pages.
>>
>>
1. make sure the server allows for it....
this...
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/eced0b89-e052-42ff-baa8-751dd191c3b5.mspx
.... or this ...
http://httpd.apache.org/docs/1.3/mod/mod_include.html
.... may be helpful
2. builds a page called call (eg) /includes/menu.inc containing stuf....
eg:
<div id="menu"><a href="p1.html">one</a><a href="p2.html">two</a><a
href="p3.html">three</a></div>
3. put this in your pages somewhere.
<!--#include virtual="/inludes/menu.inc" -->
--
beef jerky - good with beer : http://www.choicebeefjerky.com.au
if it itches, it will be scratched
[Back to original message]
|