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
housekeepers near Buffalo Grove ..In the region where my company is located, South Bend,... Read More
More and more non-profit organizations are developing websites to help... Read More
Your site is fast and getting traffic, but conversion rates... Read More
1. Choose a big enough font size. A size 12... Read More
Functions and Subroutines in ASP If you read... Read More
After having decided to start a business, the next thing... Read More
If you like the Internet and surfing through the billions... Read More
If you haven't made the sales and built your clients... Read More
One of the best tools you have as a webmaster... Read More
Your website conversion rate should concern you. This simply refers... Read More
The popular search engine Google indexes over 8 billion websites.... Read More
1. Be clear on your purpose.Building a website can be... Read More
Running an effective website is a continuous process. I have... Read More
Although there are significant differences among the various types of... Read More
It may come as some surprise to a traditionally off-line... Read More
Three way linking and concerns.For many years SEO experts were... Read More
Making money with your web site is the dream and... Read More
Build it and they will come is not always true;... Read More
Web accessibility has so many benefits that I really do... Read More
One of the things that many people overlook when building... Read More
When you take a look at the most visited sites... Read More
People often come to me in a state of crisis... Read More
I'm a freelance programmer and somehow I managed to get... Read More
When we review the sites of potential clients, there are... Read More
The internet has taken over our lives with a vengeance,... Read More
custom home cleaning Mundelein ..Getting a Targeted Visitor to a website is a waste... Read More
First, using a lot of web graphics, flash, banners and... Read More
Dan Kennedy once said that if you can't make money... Read More
Right after the thought, "I need a website," people usually... Read More
You've just finished congratulating your marketing team. After six months... Read More
The Disability Discrimination Act says that websites must be made... Read More
1. Address your targeted audience on your business site. Example:... Read More
You don't believe in astrology but you check your horoscope... Read More
Your ObjectiveYour small business needs an appealing and professional website... Read More
Like any area of business your website needs some effort... Read More
Starting a business online is no longer as difficult as... Read More
Every business needs to know how it is doing. That's... Read More
You've put up a website to promote a product or... Read More
Dynamically Update Your Web Pages Via E-MailIf you can Send... Read More
Globalize Your WebsiteThe Internet has unlocked a wide array of... Read More
You hear a great deal about the Internet these days... Read More
Making money with your web site is the dream and... Read More
How popular is online shopping? And is there room for... Read More
Fresh website content for your visitors can be of real... Read More
Let's begin by setting some limits. If you're like me,... Read More
Most interactive websites nowadays require data to be presented dynamically... Read More
If you were asked to put a value on your... Read More
That's right. According to a recent study by Nielsen/NetRatings, Amazon.com... Read More
From early days of www, the Internet sites that are... Read More
When you purchase a new item from a Yahoo! Store,... Read More
Web Development |