ASP Server.Execute() - Application Object Executes the handler for the specified virtual path in the context of the current request.
ShotDev Focus:
- Execute path of asp file.
Example
asp_server_execute1.asp
<%
Response.write("ShotDev.Com 2010<br>")
%>
asp_server_execute2.asp
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Response.write("ShotDev.Com 2009<br>")
Server.Execute("asp_server_execute1.asp")
Response.write("ShotDev.Com 2011<br>")
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_server_execute2.asp
Screenshot
.
.
.
Download this script.


