What is the difference between Server.Transfer and Response.Redirect?
all objects ,variables ,items,Request,Session.
In redirect,issue HTTP 304 to the browser and causes browser to got the specified page. Hence there is round trip between client and server.
Unlike transfer, redirect doesn't pass context information to the called page.