How to call menu text from external file?

windows

Guest
I have about twenty lines of menu code that I would like to store in a separate file and call from my HTML page, similar to using CSS (for easy editing). <br />
<br />
How do I do this? <br />
<br />
I read some instructions on making javascript into a separate 'external.js' file, then adding the script src code inside the head of my html page, but there isn't any javascript in my code. Can I still use this method, and if so, what do I put into the place where I need to actually call the script?<br />
<br />
Thanks<!--content-->What kind of code is it? If it is CSS use<link rel="stylesheet" type="text/css"><!--content-->use a server side include<br />
<!-- #include="thepage.html" --> but make sure the page with this on it has a .shtml format and make sure the server supports server side includes. If it doesnt you can also do it just as easily with ASP PHP CGI JSP CF ASP.NET, very similar code, just one line, the rest is all html.<!--content-->Check out <!-- m --><a class="postlink" href="http://blab-n-lab.home.comcast.net">http://blab-n-lab.home.comcast.net</a><!-- m --> for an example of a site doing that and the Inner Browsing article at <!-- m --><a class="postlink" href="http://devedge.netscape.com">http://devedge.netscape.com</a><!-- m --> for detailed docs.<!--content-->
 
Back
Top