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
![]() |
|
![]() |
|
![]() |
|
![]() |
Every small business owner knows that they need a website,... Read More
From early days of www, the Internet sites that are... Read More
When used to describe a web site, the term "sticky"... Read More
For years now I've been looking to start my own... Read More
Your ObjectiveYour small business needs an appealing and professional website... Read More
You know exactly what your organisation does and what your... Read More
If you have your own business website and you are... Read More
A website provides invaluable advantages for businesses who have one.7... Read More
1. Address your targeted audience on your business site. Example:... Read More
If you are living in a country that its native... Read More
Optimize your time. How much time each day must you... Read More
In this example I have used the map of the... Read More
When web content gets discussed on webmaster bulletin boards, the... Read More
One of my most salient memories from when I sold... Read More
Web sites are an Ongoing Part of Business.All too many... Read More
RIVERSIDE, CA August 4, 2004 ?- "Historically, small business owners... Read More
There are many elements that are key to successful web... Read More
Q. Hey, Cathy: I'm just setting up a website. What... Read More
With more and more countries around the world passing laws... Read More
Designing an E-commerce Web site is not as simple as... Read More
There have been many significant changes to the face of... Read More
Directory Generator, a product from Armand Morin and Marc Quarles,... Read More
A common dilemma most small and medium businesses face when... Read More
Are you aware that 90% of the websites on the... Read More
Your web site will be your window to the world.... Read More
Design and layout can make your communication come alive and... Read More
A system development process can follow a number of standard... Read More
"Build it and they will come."--Filed of Dreams (1989) If... Read More
Go to any internet marketing forum you want these days... Read More
A website is lifeline of internet home business. In order... Read More
1. As the first step, "Hire a web designer."First create... Read More
My life's greatest passion is a safari hobby. And what... Read More
Now that you have got your domain name registered, your... Read More
Have you ever thought the secret behind the success of... Read More
Most people know they need a website in order to... Read More
Many web developers today are starting to KISS their website,... Read More
Web sites are an Ongoing Part of Business.All too many... Read More
Have you ever wondered what challenges are faced by other... Read More
Research reveals three important facts:1) The Internet is one of... Read More
Here's something you may never have thought of before:If I... Read More
The big thing these days is your ability to capture... Read More
The popular search engine Google indexes over 8 billion websites.... Read More
The first thing my business consultant (read brother-in-law) asked me,... Read More
With search engines putting a damper on direct reciprocal links,... Read More
1. Address your targeted audience on your business site. Example:... Read More
With more and more countries around the world passing laws... Read More
Are you aware that 90% of the websites on the... Read More
When web content gets discussed on webmaster bulletin boards, the... Read More
Go to any internet marketing forum you want these days... Read More
Wow, we`ve already taken a domain and chosen a web... Read More
Creating and maintaining an effective presence on the Web has... Read More
Your ObjectiveYour small business needs an appealing and professional website... Read More
An automated accessibility tool is a piece of software which... Read More
So what do you do if need to get a... Read More
1. As the first step, "Hire a web designer."First create... Read More
After deciding what kind of internet business you want to... Read More
Website, website, website, everyone says you need one. But do... Read More
Although designing a great web site is an important part... Read More
What to put your the website if you are an... Read More
Recently, a friend asked "What's the deal with those DIY... Read More
What do you mean, you don't have a website for... Read More
Like most average persons, I wanted some extra money to... Read More
"Don't Sell the Steak, Sell the Sizzle."Have you heard of... Read More
Before you set up any scripts you will need some... Read More
There are lots of HTML editors on the market, however,... Read More
It never ceases to amaze me how many people set-up... Read More
Web Development |