asp execute

ASP Execute方法的作用是執行一個來自於其他ASP檔案內部的ASP程式。當其他ASP檔案內的程式被請求執行完畢之後,控制器將返回最初發出請求的原始ASP檔案
Syntax 語法
Server.Execute(path)
Parameter參數
path
Description描述
Required. The location of the ASP file to execute
必要參數。所請求執行的ASP檔案的本機地址。
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!
回過頭來再看看Server.Transfer方法,你會發現,在“Server.Execute”和“Server.Transfer”方法之間存在著不同。

相關詞條

熱門詞條

聯絡我們