Server.Transfer() and Response.Redirect()

Server.Transfer() and Response.Redirect()

Working on my current project, I come up with a scenario to switch a visitor to a new page after some process.
Here I have an option to use either redirect() or server.transfer(). So what are the tradeoffs:

  • Redirect() would allow to navigate to other pages out of the current website unlike Transfer()
  • Redirect() needs a round-trip to client page but transfer() won’t need this which would make transfer() a bit fast

Well for my case, I am not redirecting to other page and I want it to be fast so – I have used Server.Transfer().

For questions related to page transfer refer http://msdn.microsoft.com/en-us/library/x3x8t37x.aspx

See how you would solve these known algorithm problems

Check if there are three numbers a, b, c giving a total T from array A

Flatten nested javascript array

Find longest palindrom from sequence of characters

Changing decimal number to its binary equivalent

Implementing tokenizer and adding tokens to the linked list

find longest word in the sentence

Array reversal in Recurrsion

binary tree problems with solution

Kadane’s algorithm in C – Dynamic Programming

Implement Queue Using two Stacks – JavaScript algorithm

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*