Questions
Server-Side Includes (also known as SSI) allows you to do what?
- Allows you to include server executed code into any ASP application.
- Allows you to use one file in several different web pages.
- Allows you to use a piece of code more than once.
- All of the above
The include files can be written in which scripting language?
- HTML
- JavaScript
- VBScript
- Perl
- All of the above
Changing an include file will affect all the pages that link to it such as a navigation bar. Suppose you want certain pages to display a certain navigation bar not available on other pages. Which is the BEST method to do this?
- Write a separate include file for those unique pages.
- Forget the include file. It is easier to just put the unique menu in using HTML code.
- Have the include file test for the type of page and then print out the correct menu.
An include file can be saved with a .asp extension.
- True
- False
Which of these page extensions WILL NOT recognize and execute an include file?
- .shtml
- .shtm
- .stm
- .html
- .asp
Which is the correct format of an include statement?
- <% '#include virtual="banner.asp" %>
- <!-- #include virtual="banner.asp" -->
- <-- #include virtual="banner.asp" -->
- <-- #include virtual="banner.asp" -->
An include file that contains ASP code can be saved with a .inc extension.
- True
- False
Where would you place an include statement that has functions, subroutines and other configuration type of code?
- At the beginning to keep the code neat and tidy.
- Anywhere in the code where it is actually needed.
Lets say that your include file is a piece of code that will print out your navigation menu. Where would you place the include statement?
- At the beginning to keep the code neat and tidy
- Anywhere in the code where it is actually needed.
You are working on a file called index.asp and have put in the include statement below. Where is the include file actually located on the web server? ..
- The include file is in the same directory as the file that is requesting it.
- The include file is in another directory away from the file that is requesting it.
When viewing the source code of a web page, the JavaScript code can be seen and copied; thus, the code is not secure. Since JavaScript and include statements are both written with the same HTML delimiters: , this also means that the include st
- True
- False