| The syntax for including files on an ASP page is identical to that for SSI :
<!--#include file="page.asp" -->
Or in the case of a file in another directory:
<!--#include virtual="/directory/page.asp" -->
* You can include files with .asp, .html, .txt and other extension.
* The final page must have a .asp extension if code in the included page is to run correctly.
* Again, you should strip out everything except the actual content you wish to include. |