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
The process of Web application development is critical to the... Read More
It's now easier than ever to take payments on the... Read More
Many small businesses have the misconception that their business can... Read More
Most web sites are more like stage sets than real... Read More
You hear a great deal about the Internet these days... Read More
The following is a list of patterns that many visitors... Read More
Just starting out, you can start with a simple informational... Read More
When you publish a content site there are times when... Read More
Understanding and using web analytics.In recent years, website marketers were... Read More
When you purchase a new item from a Yahoo! Store,... Read More
Recently I was reviewing the keyword specific conversion rate data... Read More
Absolutely everything stems from the purpose of your website -... Read More
What is the most important part of your online business?Many... Read More
1. The first page appears quickly.It's a good way to... Read More
So you have decided that you want to do freelance... Read More
There are hundreds of millions of Web surfers today. Each... Read More
A website is lifeline of internet home business. In order... Read More
If you're fairly new to the Internet scene, you may... Read More
"What's in it for me?" you ask. "Why should I... Read More
Fresh website content for your visitors can be of real... Read More
In the big, wide online world there are millions of... Read More
cPanel is a control panel for your website and allows... Read More
This article was prompted by some customer support work I... Read More
Many small companies choose not to invest in a professionally... Read More
Having an eye catching website is great, but are you... Read More
For years now I've been looking to start my own... Read More
Is your website Really useful?I had a 'rep' in yesterday... Read More
In this example I have used the map of the... Read More
Now that you have got your domain name registered, your... Read More
I've heard several prominent web marketers mention in their classes... Read More
Think up a name and check if yourname.com is available.... Read More
One of the biggest mistakes that most online retailers make... Read More
The first thing my business consultant (read brother-in-law) asked me,... Read More
RIVERSIDE, CA August 4, 2004 ?- "Historically, small business owners... Read More
The popular search engine Google indexes over 8 billion websites.... Read More
When people think about the Internet, they think about technology.... Read More
80% of your Web site is Maintenance!Once your Web site... Read More
2 Golden Rules for an Engaging Website35% of visitors fail... Read More
Think up a name and check if yourname.com is available.... Read More
It never ceases to amaze me how many people set-up... Read More
You don't believe in astrology but you check your horoscope... Read More
Customer service questionnaires can help your clients better understand their... Read More
Simply ensuring your website is accessible to screen reader users... Read More
The Internet is being used by local service business to... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
Optimize your time. How much time each day must you... Read More
Everywhere you look these days, people are telling you that... Read More
Your content is what gets you in search engines, speaks... Read More
What to do if you are an artist after you... Read More
In this day and age most businesses consider having their... Read More
Fresh website content for your visitors can be of real... Read More
While most marketers are beginning to understand the critical importance... Read More
There's been widespread speculation about the new legislation being introduced... Read More
Failure, just like success, is measured differently by each and... Read More
SiteSpinnerSiteSpinner is a user-friendly web site development tool that includes... Read More
Now that you have got your domain name registered, your... Read More
We are clearly well past the innocent "golden age" of... Read More
What is CSS?CSS is a simple file which controls the... Read More
Cost Effective Advertising. Online selling. Increased geopgraphic range. Wider... Read More
I had a client say something to me the other... Read More
There was a time not long ago when setting up... Read More
A system development process can follow a number of standard... Read More
So you've decided to start an online work at home... Read More
The big thing these days is your ability to capture... Read More
1) Data CaptureOne easy way to collect e-mail addresses and... Read More
Running an effective website is a continuous process. I have... Read More
Web Development |