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
Bedford Park travel from Midway .. Lockport Chicago limo O’HareThat's right. According to a recent study by Nielsen/NetRatings, Amazon.com... Read More
What to do if you are an artist after you... Read More
So your prospect, Mary, is sitting at the computer reading... Read More
If you are like me you have wanted to build... Read More
Can you imagine the hypocrisy of spending thousands of dollars,... Read More
Fresh website content for your visitors can be of real... Read More
You have seen those web pages where they have the... Read More
One of the things that Internet excels is disseminating information... Read More
So what do you do if need to get a... Read More
We all start out the same. Some have budgets, some... Read More
Often time I've browsed sites and seen the same thing... Read More
Everyday thousands of new businesses make the leap and take... Read More
There are hundreds of millions of Web surfers today. Each... Read More
I had a client say something to me the other... Read More
A lot of people these days are interested in getting... Read More
Everywhere you look these days, people are telling you that... Read More
When building a relationship, listening is more important than talking.A... Read More
SummaryHere's the scoop on what you must know when designing... Read More
In the region where my company is located, South Bend,... Read More
Installment 1Developing State-enabled Applications With PHPWhen a user is browsing... Read More
Never has competition been so difficult in the Internet world.... Read More
One of the most important parts of establishing a new... Read More
It amazes me how many people try to build serious... Read More
Yahoo has long offered email, an online calendar, notes, bookmarks,... Read More
Thousands of people are now making a living online and... Read More
Cadillac Escalade SUV rentals Basco ..Think up a name and check if yourname.com is available.... Read More
Three way linking and concerns.For many years SEO experts were... Read More
If you were asked to put a value on your... Read More
1. Be clear on your purpose.Building a website can be... Read More
Server Side Includes (SSI) with ASP People often... Read More
This simple question can take on several different forms, but... Read More
Making a web site is easy. Making a good web... Read More
Now that you have got your domain name registered, your... Read More
What is the point of having a website, you may... Read More
People often come to me in a state of crisis... Read More
Designing and creating your own website does not have to... Read More
The big thing these days is your ability to capture... Read More
The internet has taken over our lives with a vengeance,... Read More
While studying online for IT investment opportunities, I found that... Read More
Although CSS layouts have been around for years, they haven't... Read More
If you're fairly new to the Internet scene, you may... Read More
When you take a look at the most visited sites... Read More
I've heard several prominent web marketers mention in their classes... Read More
There are many elements that are key to successful web... Read More
One of the biggest mistakes that most online retailers make... Read More
If you're looking for better web site ROI, chances are,... Read More
Build it and they will come is not always true;... Read More
Fantastico is a 3rd-party cPanel add-on and can be purchased... Read More
So you've decided to start an online work at home... Read More
Simply ensuring your website is accessible to screen reader users... Read More
Web Development |