People often have identical sections of code spread throughout many ASP pages, typically code at the top of the page (usually referred to as the header) and the lower part of the page (the footer). Similarly, you may have code that performs a certain set of instructions that you are repeating across multiple pages. Consider an example:-
<%
If foobar="yes" then
response.write "YES!"
Else
response.write "NOT YES!"
End if
%>
Ok, ok... it's simple, but imagine that you used this on multiple pages. What's wrong with this picture?
Well... you don't have to think about that long before realising that if you ever wanted to change something about that piece of code, you'd have your work cut out. you would have to change every page... everyone has done this at some stage and luckily most usually take the steps to learn a way around this problem.
If we could save our valuable chunk of code into a file and have that file accessed whenever we needed the code, then we no longer have a problem when it comes to changing things, as we simply update one file. Include files or Server Side Includes (SSI) as they are more commonly known are a powerful way to not only save time when it comes to maintaining and updating a site, but also increase efficiency and speed of that site too!
Ok, lets see how we use an include file... to start with we need to use one of two methods. The first one allows for including files relatively. By that I mean relative to the directory the ASP file that is using the include file resides. The second method includes files virtually. Including files virtually means that the path is taken from the root directory.
Consider that we are going to have a file (/main/somefile.asp) include another file (/includes/someinclude.asp).
To demonstrate, relative inclusion, look at this:-
<%
Response.Write "executing included code now"
%>
<!--#include file="../includes/someinclude.asp"-->
<%
Response.write "done executing included code"
%>
And here, we give an example of the other method, virtual inclusion:-
<%
Response.Write "executing included code now"
%>
<!--#include virtual="/includes/someinclude.asp"-->
<%
Response.write "done executing included code"
%>
Note the slight difference between the two methods. With virtual inclusion, you can move the file that calls upon the include file anywhere without affecting the outcome, because the path is always relative to the root. The same cannot be said however for relative inclusion. If you move a file that is using relative inclusion to a different directory, you'll most likely find the relative path is no longer correct.
From the examples above, you may also notice that both methods, when calling the include do so OUTSIDE of the ASP script block. This because #include declarations are not interpreted by ASP. Include files are included before a single line of ASP is processed which means the following WONT work:-
%lt;%
Page=request.form("page")
%>
<!--#include file="../includes/<%=page%>.asp"-->
We were attempting to perform a dynamic include and I would be the first to admit that the above would be very useful indeed if in fact it were possible. I do intend to cover a few methods that work around this set back but I know you will now be itching to get started right away on using include files to even worry about this, so I will cover it in a future article.
I hope that you have found the above informative and hope it inspires you all to write code that's more efficient and more easily maintained.
Rob Collyer, experienced with 20 years programming knowledge and site administrator of www.webforumz.com - Copyright 2003-2004
![]() |
|
![]() |
|
![]() |
|
![]() |
"If you build it, they will come"; is an age... Read More
That's right. Your method, behavior and strategy you are now... Read More
Like any area of business your website needs some effort... Read More
You've just finished congratulating your marketing team. After six months... Read More
More and more non-profit organizations are developing websites to help... Read More
Functions and Subroutines in ASP If you read... Read More
While creating a Web site may seem like... Read More
Recently, a friend asked "What's the deal with those DIY... Read More
I recently received an unsolicited e-mail from some company offering... Read More
cPanel is a control panel for your website and allows... Read More
If you are like me you have wanted to build... Read More
There is an ongoing debate about web copy. Some say... Read More
I recently helped my mom to launch a website (www.mom2me.com)... Read More
The popular search engine Google indexes over 8 billion websites.... Read More
Web accessibility has so many benefits that I really do... Read More
After having decided to start a business, the next thing... Read More
Many web developers today are starting to KISS their website,... Read More
Huge Mistake #1: Creating a Website with Flash -- Did... Read More
One of the most useful features offered by some web... Read More
So you finally decided to invest in a web presence... Read More
I am just a learner who likes to delve in... Read More
It may come as some surprise to a traditionally off-line... Read More
Design and layout can make your communication come alive and... Read More
Failure, just like success, is measured differently by each and... Read More
A system development process can follow a number of standard... Read More
Everyday thousands of new businesses make the leap and take... Read More
The Internet has opened a whole New World of opportunity... Read More
For years now I've been looking to start my own... Read More
80% of your Web site is Maintenance!Once your Web site... Read More
Are you, like many other website owners, frustrated at the... Read More
A professional online reputation is essential to the flourishing of... Read More
Like most average persons, I wanted some extra money to... Read More
You know exactly what your organisation does and what your... Read More
You want to give your site's visitors a way to... Read More
"I am a writer, not a business-person. I don't want... Read More
Thousands of people are now making a living online and... Read More
If one more business owner tells me their website sucks... Read More
Looks like every client wants a Flash site these days... Read More
Does My Web Site Require A Web Database?If your web... Read More
You have seen those web pages where they have the... Read More
Many websites I come across don't have a single link... Read More
So your prospect, Mary, is sitting at the computer reading... Read More
This simple question can take on several different forms, but... Read More
Just starting out, you can start with a simple informational... Read More
A common dilemma most small and medium businesses face when... Read More
The growth in Internet usage around the world is astounding... Read More
That's right. According to a recent study by Nielsen/NetRatings, Amazon.com... Read More
I am just a learner who likes to delve in... Read More
Knowledge is power.And undoubtedly, it is the key to making... Read More
Never has competition been so difficult in the Internet world.... Read More
The Disability Discrimination Act states that service providers must not... Read More
An interesting eCommerce success factor that isn't precisely overlooked, but... Read More
Failure, just like success, is measured differently by each and... Read More
D.zigns dzignerwebs The Basics Before starting on... Read More
Webmasters deal with a myriad of complex design challenges every... Read More
So your traffic is going through the roof yeah? It's... Read More
Psychology is a long word which everyone thinks, "no, that's... Read More
We all start out the same. Some have budgets, some... Read More
You've just finished congratulating your marketing team. After six months... Read More
1. The first page appears quickly.It's a good way to... Read More
In about the Time it takes to Watch a Reality... Read More
Go to any internet marketing forum you want these days... Read More
Making a web site is easy. Making a good web... Read More
One of the biggest mistakes that most online retailers make... Read More
SummaryHere's the scoop on what you must know when designing... Read More
Mini Websites are the most powerful and cost effective solution... Read More
Web Development |