Posted - 06/19/2026 : 09:19:54
quote: "What I began doing is putting all common content in various include files. So I just edit the menu include for example in this case."
Hi, this is the best solution for not having a way to edit common content without having to edit each page on your website, or needing dreamweaver, or expression web. Frankly, I don't like all the meta folders created with expression web. if you look at the store pages, like cart.asp there is an include line in there that pulls the cart into your page. <?php include "vsadmin/inc/inccart.php" ?> You can do the same thing with other pages. <?php include "menu.php" ?> <?php include "header.php" ?> <?php include "footer.php" ?> <?php include "left-sidebar.php" ?> For me, on a recent redesign, this seemed like the best way forward. You might consider modifying your pages in this fashion to make future changes much easier without needed dreamweaver or expression web. Thanks, David
|