The information in this article applies to:
SUMMARYSince Active Server Pages (ASP) pages are compiled and executed before being sent to the client (as static HTML), trying to use a variable in place of a file name in a Server Side Include (<!-- #include PathType = FileName -->) fails. To include a file in your ASP page, you could include code similar to the following that reads in a file and displays it. MORE INFORMATION
The dynamically included file may contain any client-side code you wish, including HTML and JavaScript. However, ASP will NOT process server-side script in the file. This is because all the ASP code has already run when it includes the file and the server will not go back to read anything for server-side processing again. REFERENCESFor additional information, please see the following article in the Microsoft Knowledge Base: Q172024 INFO: Server Side Include Directives Not Processed by ASP Additional query words:
Keywords : kbASP kbJScript kbScript kbVBScript kbGrpASP kbiis400 kbiis500 kbFSO |
Last Reviewed: December 8, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |