web 2.0

ASP Server.Execute() - Server Object

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

ASP & Server.Execute()

.

.

.

Download this script.

Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.