📜  ASP Server.Execute 方法

📅  最后修改于: 2022-05-13 01:56:55.545000             🧑  作者: Mango

ASP Server.Execute 方法

ASP Server.Execute 方法用于从 ASP 文件执行各种 ASP 脚本。这种方法与某些编程语言中的过程调用方法非常相似。

句法:

Server.Execute(path) 

参数值

  • 路径:它存储一个字符串值,表示要执行的 .asp 文件的位置。

示例代码:

须藤.asp

<%
response.write("Geeks For Geeks!
") %>

GFG.asp

<%
response.write("Welcome to 
") Server.Execute("file2.asp") %>

输出

Welcome to 
GeeksFoeGeeks