What is the difference between Server.Transfer and
Response.Redirect?

Answer Posted / gitam singh

Server.Transfer() : client is shown as it is on the requesting page only, but the all the content is of the requested page. Data can be persist across the pages using Context.Item collection, which is one of the best way to transfer data from one page to another keeping the page state alive.
Response.Dedirect() :client knows the physical location (page name and query string as well). Context.Items loses the persistence when navigate to destination page. In earlier versions of IIS, if we wanted to send a user to a new Web page, the only option we had was Response.Redirect. While this method does accomplish our goal, it has several important drawbacks. The biggest problem is that this method causes each page to be treated as a separate transaction. Besides making it difficult to maintain your transactional integrity, Response.Redirect introduces some additional headaches. First, it prevents good encapsulation of code. Second, you lose access to all of the properties in the Request object. Sure, there are workarounds, but they're difficult. Finally, Response.Redirect necessitates a round trip to the client, which, on high-volume sites, causes scalability problems. As you might suspect, Server.Transfer fixes all of these problems. It does this by performing the transfer on the server without requiring a roundtrip to the client.
Response.Redirect sends a response to the client browser instructing it to request the second page. This requires a round-trip to the client, and the client initiates the Request for the second page. Server.Transfer transfers the process to the second page without making a round-trip to the client. It also transfers the HttpContext to the second page, enabling the second page access to all the values in the HttpContext of the first page.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you generate a strong name?

596


What's a windows process in .net?

536


  • Accomm
  • i have this code.now on server side i want to compare this id(Accommodation) value and want id i.e.Accommodation.visible=true;

    1384


    What tools can I use to develop .net applications?

    569


    What are an object and a class?

    562






    What are the advantages of .net core?

    535


    Please explain what are an inheritance, polymorphism, and encapsulation?

    576


    What is a strong name in .net?

    589


    What is iis? Have you used it?

    565


    I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?

    535


    What does msil do?

    550


    Describe the programming model of a windows service

    546


    What are the core differences between .NET Languages ?

    1792


    State some of the different languages supported by .net?

    554


    Explain memory-mapped files.

    632