What is the difference between Server.Transfer method and Response.Redirect method?
Usama Mosaad
Select an image from your device to upload
Response.Redirect simply sends a message to the browser, telling it to move to another page.For Example:
Server.Transfer is similar in that it sends the user to another page:
For Example:
Server.Transfer("default.aspx").
Difference between Server.Transfer method and Response.Redirect method.
Response.Redirect should be used when:
Server.Transfer should be used when: