Page 1 of 1

Server Side Includes (SSI)?

Posted: Thu Jun 18, 2009 1:14 pm
by mdiaz.tello
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

Re: Server Side Includes (SSI)?

Posted: Thu Jun 18, 2009 2:38 pm
by thomastaranowski
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.