ASP Transfer Method
Complete Server Object Reference
The Transfer method sends (transfers) all the state information (all
application/session variables and all items in the request collections) created
in one ASP file to a second ASP file.
When the second ASP page completes its tasks, it will NOT return to the first
ASP page (like the Execute method).
Note: The Transfer method is an efficient alternate for the Response.Redirect.
A redirect forces the Web server to handle an extra request while the Server.Transfer
method transfers execution to a different ASP page on the server, and avoids the extra round
trip.
Syntax
| Parameter |
Description |
| path |
Required. The location of the ASP file to which control should be
transferred |
Example
File1.asp:<%
response.write("Line 1 in File 1<br />")
Server.Transfer("file2.asp")
response.write("Line 2 in File 1<br />")
%>
File2.asp:
<%
response.write("Line 1 in File 2<br />")
response.write("Line 2 in File 2<br />")
%>
Output:
Line 1 in File 1
Line 1 in File 2
Line 2 in File 2
|
Also look at the Server.Execute method to see the difference between the
Server.Transfer and Server.Execute methods.
Complete Server Object Reference
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|