Is there a mechanism on the netburner platform to allow for SSI in web pages? Say for instance that I have a menu that I would like to just write once in one HTML file, and then have that code get loaded every time a different web page gets loaded so that the menu would appear in the new web page; is there a way to do this on the netburner platform? Another way to put it would be like #include for C and C++, except it works with HTML. Thanks!
--MDiaz-Tello
Server Side Includes (SSI)?
-
- Posts: 82
- Joined: Sun May 11, 2008 2:17 pm
- Location: Los Angeles, CA
- Contact:
Re: Server Side Includes (SSI)?
I don't believe SSI is supported. The solution I used was to write a javascript function, which did some document.write's to output a menu (e.g. outputMenu). This actually turned out to be a better solution, as I could dynamically alter the menu based on what the user had enabled.