Changing from Server.Transfer to Response.Redirect.

  • Thread starter Thread starter Mufasa
  • Start date Start date
M

Mufasa

What are the ramifications of changing from Server.Transfer to
Response.Redirect? I need to keep track of the URLs being used.

Can you do relative addresses through redirect?

TIA - Jeff.
 
Yes you can do relative addresses via Response.Redirect.
Response.Redirect will keep the browser informed of the "correct" URL at all
times, which it sounds like you desire.
The performance is poorer with Response.Redirect than with Server.Transfer
because of the extra round trip required to the browser and back.
Here's more info:
http://SteveOrr.net/faq/TransferRedirect.aspx
 
Back
Top