You understand what I want to do? Can you suggest me something. Thanks
I tried to post a response earlier, but I think it got lost.
What you want to do is create a template structure where your menu system
is constant and your content is variable. Check out a site like CNN or
something - notice they use a single page, but things like headers and
footers stay the same while the middle changes. They use pre-generated
HTML I presume.
quickly, here's *some* ways to accomplish that (some require more
knowledge than others).. take as a starting point for more investigation.
1. Buy an HTML editor or site builder that will manage this task for you.
Sorry, I don't use 'em so I can't recommend any, but names like Adobe,
Macromedia are big.
2. Use manual cut and paste (worst option other that frames!)
3. Use multi-file search and replace (cheap pre-generated HTML). Create
your content files and put unique strings in them where you want the
header and footer like this
...
%HEADER%
... your content
%FOOTER%
and then use a text editor like homesite, editpad lite or something to
replace the strings with your menu system and footer.
4. Use a server site script which takes the content URL as a querystring
variable. Example, /template.[asp|jsp|php]?content_file=news_article_
1.html. I'm sure there are lots of example scripts out there to
accomplish this.
5. Use shtml files, and use the #include directive to include the
header/menu and footer around your content.
6. Write a program to pre-generate your html from content files and
header/footer files.