Hi,
I'm pretty sure there isn't a way but:
How can I include a file like you can in asp but for bog standard HTML ?
Mainly for the menu structure - since I'm lazy and want it held in one place.
Vince
Printable View
Hi,
I'm pretty sure there isn't a way but:
How can I include a file like you can in asp but for bog standard HTML ?
Mainly for the menu structure - since I'm lazy and want it held in one place.
Vince
<!--#include file="included.html" -->
That needs to be handled by a server side application ...
try object or Iframe
link
You could also create a javascrpt function which pumps out the required html and call that function in each page
That really would be a very bad solution, since the HTML would be very hard to type valid, because of ' " 'Quote:
Originally posted by DeadEyes
You could also create a javascrpt function which pumps out the required html and call that function in each page
I tried the javascript way - assumes the user has it on of course - and I was happy with it. But those who do websites properly and for a living slated it. So I dropped it. I was just wondering if there was an easy way to do the include on noral HTML - guess not. :)
I'll check and see if Blueyonder do Asp for free (no db cons though) then I might be ok.
Cheers for the responses
Vince
Most servers support it.Quote:
Originally posted by vbNeo
That needs to be handled by a server side application ...