Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?

Answer Posted / sulochana 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 accros 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 know the physical location (page name and query string as well). Context.Items loses the persisitance when nevigate 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.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Describe the sequence of action takes place on the server when ASP.NET application starts first time?

1182


What is difference between Lambda Expression and LINQ in ASP.NET?

1282


Differentiate between Server.Transfer and Response.Redirect with functionality? Why we can choose one over the other?

1247


What is mvc in asp.net tutorial? : Asp.Net MVC

1276


What's the difference between viewstate and sessionstate?

1127


How asynchronous call can be implemented using delegates?

1040


What symbol specifies the beginning of a query string?

979


What are the differences between primary foreign and unique keys?

1125


What is the difference between asp.net and mvc?

1164


What is the difference between pathparam and queryparam?

1118


What is application variable in asp.net?

977


What is difference cookie and session?

1033


Explain what does wsdl stand for?

1228


Tell me how asp.net mvc differs from asp.net web forms? : asp.net mvc

1226


What is marshalling ? Is it a part of asp.net ?

1138