Platform SDK: IIS SDK |
The Execute method calls an .asp file, and processes it as if it were part of the calling ASP script. The Execute method is similar to a procedure call in many programming languages.
Server.Execute( Path)
The Server.Execute method provides a way of dividing a complex application into individual modules. By employing the Server.Execute method, you can develop a library of .asp files that you can call as needed. This approach is an alternative to server-side include directives. The major difference is that you can dynamically call an .asp file by using Server.Execute.
After IIS processes the .asp file specified in the input parameter to Server.Execute, the response is returned to the calling ASP script.
The following collections and properties are available to the executed ASP page:
If a file is included in the calling page by using #include, the executed .asp will not use it. For example, you may have a subroutine in a file that is included in your calling page, but the executed .asp will not recognize the subroutine name. You must include the file in each executed .asp that requires the subroutine.
If either the calling or called .asp file contains a transaction directive, the status of the transaction will apply to the .asp file that contains the directive. For example, if ASP1 below calls ASP2 and the transaction is aborted while ASP2 is being processed, the ASP2 OnTransactionAbort (if present) is called. After ASP2 completes processing, the ASP1 OnTransactionAbort (if present) is called. The following code demonstrates this.
ASP1:
<%@ Transaction=Required %>
<%
Server.Execute ("ASP2.asp")
Sub OnTransactionAbort
Sub OnTransactionCommit
%>
ASP2.asp:
<%@ Transaction=Required %>
<%
Sub OnTransactionAbort
Sub OnTransactionCommit
%>
In the following example, the browser language determines which .asp file is executed. (Languages with multibyte characters have not been included in this example because of codepage incompatibilities.) The output from these scripts on a U.S. system is:
Company Name
Welcome to my website!
The output from these scripts on a German system is:
Company Name
Willkommen zu meinem website!
The output from these scripts on a Spanish system is:
Company Name
Recepción a mi website!
--- Welcome.asp ---
<HTML>
<BODY>
<H1>Company Name</H1>
<%
AcceptLang =index.html Request.ServerVariables("HTTP_ACCEPT_LANGUAGE")
Lang = Left(AcceptLang, 2)
Server.Execute(Lang & "Welcome.asp")
%>
</BODY>
</HTML>
--- EnWelcome.asp ---
<% Response.Write "Welcome to my website!" %>
--- DeWelcome.asp
<% Response.Write "Willkommen zu meinem website!" %>
--- EsWelcome.asp ---
<% Response.Write "Recepción a mi website!" %>
Platforms: Windows 2000 with IIS 5.0 installed,
Windows XP with IIS 5.1 installed,
Windows Server 2003 family with IIS 6.0 installed
What did you think of this topic? |
Order a Platform SDK CD |
Comments: