Easy Tutorial
❮ Asp Ado Prop Lcid ❯

ASP Transfer Method



The Transfer method sends all state information (all application/session variables and all items in the request collections) created in one ASP file to another ASP file.

When the second ASP completes any task, it does not return to the first ASP page.

Note: The Transfer method is an efficient alternative to Response.Redirect. When the Server.Transfer method transfers execution to another ASP page on the server, redirection forces the web server to handle an additional request, avoiding extra steps.

Syntax

Parameter Description
path Required. The location of the ASP file. Transfers control to this ASP file.

Example

Refer to the Server.Execute method to understand the difference between Server.Transfer and Server.Execute methods.


❮ Asp Ado Prop Lcid ❯