ASP Execute Attribute
Definition and Usage
The Execute method executes an ASP file from another ASP file. After the called .asp file has been executed, control returns to the original .asp file.
Syntax
Server.Execute(path)
Parameter | Description |
---|---|
path | Required. The location of the ASP file to be executed. |
Example
File1.asp:
<% response.write("I am in File 1!<br />") Server.Execute("file2.asp") response.write("I am back in File 1!") %>
File2.asp:
<% response.write("I am in File 2!<br />") %>
Output:
I am in File 1! I am in File 2! I am back in File 1!
See Also Server.Transfer Methods, learn about the difference between Server.Execute and Server.Transfer methods.