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
![]() |
|
![]() |
|
![]() |
|
![]() |
When used to describe a web site, the term "sticky"... Read More
Did you know that hosting companies overcrowd their servers despite... Read More
How many Web Sites did you stumble over telling you... Read More
Everyone wants one.Everyone wishes they knew how to make one.SOME... Read More
If your company own one or more stores, you might... Read More
That's right. Your method, behavior and strategy you are now... Read More
An additional benefit of website accessibility is an improved performance... Read More
So you have a good idea for a business and... Read More
Thinking about starting up a business? The web is the... Read More
I still remember it very clear ... It was almost... Read More
1. Many people are not getting good or complete advice.... Read More
Designing and creating your own website does not have to... Read More
If you're looking for better web site ROI, chances are,... Read More
Although designing a great web site is an important part... Read More
Losing website sales and traffic is sometimes simply a case... Read More
I am just a learner who likes to delve in... Read More
Does your website have a links/resources page?Do you exchange reciprocal... Read More
Designing an E-commerce Web site is not as simple as... Read More
What happened on your website yesterday? What about last week... Read More
"I am a writer, not a business-person. I don't want... Read More
You know exactly what your organisation does and what your... Read More
Never has competition been so difficult in the Internet world.... Read More
Have you ever thought the secret behind the success of... Read More
One of my most salient memories from when I sold... Read More
Wow, we`ve already taken a domain and chosen a web... Read More
If you've been developing websites on Mars for the past... Read More
Many millions of dollars are being wasted on promoting and... Read More
If you are living in a country that its native... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
1. SiteSpinner V2 - On Sale www.deprice.com/sitespinner.htmSiteSpinner is a user-friendly... Read More
The "robots" meta tag, when used properly, will tell the... Read More
If one more business owner tells me their website sucks... Read More
You have permission to publish this article electronically, in print,... Read More
Fantastico is a 3rd-party cPanel add-on and can be purchased... Read More
A website is the most versatile and cost-effective marketing tool... Read More
When I set up my website I felt paypal was... Read More
A website provides invaluable advantages for businesses who have one.7... Read More
More and more non-profit organizations are developing websites to help... Read More
When I started my company in 2002, I knew I... Read More
In this example I have used the map of the... Read More
Your site is getting traffic, but conversion rates are horrible.... Read More
No matter the size of your business, having a web... Read More
Failure, just like success, is measured differently by each and... Read More
Selecting the Perfect Domain NameThe first issue I have with... Read More
With all of the factors involved in designing and building... Read More
So you want to take a look at a real... Read More
Now that you have got your domain name registered, your... Read More
Today it seems everyone is jumping on the entrepreneur bandwagon,... Read More
Writing for the web is totally different to writing for... Read More
Your content is what gets you in search engines, speaks... Read More
There are many different traffic analysis tools, ranging from simple... Read More
Q. Hey, Cathy: I'm just setting up a website. What... Read More
Project Safekids provides webmasters a valuable tool which could save... Read More
Directory Generator, a product from Armand Morin and Marc Quarles,... Read More
Starting an internet business can be confusing to non-veterans. The... Read More
Like most average persons, I wanted some extra money to... Read More
So your prospect, Mary, is sitting at the computer reading... Read More
Most interactive websites nowadays require data to be presented dynamically... Read More
Making maximum profit from your law firm website is important,... Read More
Your web site will be your window to the world.... Read More
Website, website, website, everyone says you need one. But do... Read More
People often come to me in a state of crisis... Read More
"If you build it, they will come"; is an age... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
Visitors to your site come looking for information or solutions... Read More
1) Word of Mouth The single most powerful form of... Read More
Web Development |