![]() |
|
|
includes and Variables for Links
From Stephen V.: Although there are many tools that facilitate searching and replacing links in pages, as a fan of the "code it by hand" school of ASP programming, I tend to prefer a more hands on approach of linking to other pages. The basic idea is to create an include file (or application variables if need be) that contains a listing of all pages on the server and a variable assigned to each. This is useful in case the page gets moved, renamed, deleted, etc. The basic idea is this (i'm assuming you are using a server side include in this code example):
Create a
Then in your main page text:
This methodology has the following advantages over using a GUI editor to do this:
2) If you are in development phase and will later be changing the entire url of the page, you could modify the include file to include the "path to this section" and just change that at production time. 3) Much more easily integrated into some sort of content tree / database solution. I am currently developing a web site that uses this approach, with two dictionary (actually I am currently using application variables but might change later) objects - one to obtain the path given a "title", and one to do the exact opposite. Then at the top of each page, I show the "path to this section" ala CNet/Yahoo:
The beauty of this is that I don't actually have to hand code *anything* in each individual page itself to show the path. I just put an include at the top and it will figure out the path without requiring the author to do anything. A small snippet of code for this might look as follows:
Eventually I'll probably create a com scriptlet, etc., all much easier because in development phase I used variablenames for links.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||