Low cost ecommerce web development India flash website design

Includes
Server Side Includes or SSI is a very simple programming language but it also
has a very limited number of instructions. We will consider only one option
SSI allows us to use within our asp scripts: include/virtual.
<!-- #INCLUDE FILE=”filename.inc” -->
As we have the #include <stdio.h> statement in C, we have the #include
directive here. The purpose is exactly similar: #INCLUDE actually includes
the said file at the given location. Any script that is present within that file is
automatically executed.
Include files are typically used to store application-wide functions and
procedures, as well as various utility functions, e.g. IsValidEmail (...) a
function that checks if a given string is a valid email address. You can put
such functions in just 1 file, and include that on each one of your pages.

Or, you may use this functionality to insert headers & footers on every page.
Putting all the standard content in one file, you simply include that file in each
of your pages, so you do not need to copy & paste it everywhere. Updates are
easier too, since you can modify just one file and not worry about forgetting
to update another.
Another form of the INCLUDE directive uses the keyword virtual:
<!-- #INCLUDE VIRTUAL=”/directory/file.inc” -->
which will locate the file considering it as the virtual path. According to the
line above, the file is expected to be found at
www.domain.com/directory/file.inc
Note that the virtual path of the file above, is the one that is entered in the
#INCLUDE statement.

Freelance web designer ASP PHP ecommerce web development India
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28. 29 30 31. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64. 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91