Wednesday, 23 April 2014

What is difference Response.Redirect and Server.Transfer


 Respone.Redirect :
  • 1.      Url- any page in same domin or others.
  • 2.      Explicitly needs to carry values using QueryString.
  • 3.      URL is updated.
  • 4.      Value appear and limit is less.

Serve.Transfer :
  • 1.      PageName in same domain
  • 2.      Implicitly with true option. QueryString can also be used.
  • 3.      URL is not updated.
  • 4.      Values doesn’t appear and limit is high.

No comments:

Post a Comment