|
bobby -> RE: Includes, CSS and ASP (6/1/2004 15:00:41)
|
It looks like you're using Front Page component includes... they dont work on ASP pages... you'll have to change to SSI (Server Side Includes) It works the same way, but as G mentioned above, you'll have to remove everything but EXACTLY what should appear in the include (ditch the <html>, <head> and <body>) Then use this format for the include command: <!--#include file="filename.txt" --> The include can be a .txt, .inc, .html, .htm, etc... doesn't matter. The server will parse the include before sending the data to your browser... like a copy > paste at the server level... you'll never be able to tell there was an include there.
|
|
|
|