Sun
ONE Active Server Pages Product Home Page Developer Site Version
 

ContentsPreviousNextIndex



Examples: ASP Server Object Execute Method

The following code illustrates use of the Server.Execute method:

File1.asp:

<%
Response.Write("This is File 1!<br>")
Server.Execute("file2.asp")
Response.Write("This is File 1 again!")
%>

File2.asp:

<%
Response.Write("This is File 2!<br>")
%>
 

Output would be as follows:

This is File 1!

This is File 2!

This is File 1 again!



ContentsPreviousNextIndex