RE: what is the difference between Response.Redirect a...
By using response.redirect another page is loaded means URL changes but by using server.transfer only data is loaded on the same page URL remains same.
RE: what is the difference between Response.Redirect and Server.Transfer
To further clarify a response.redirect has a round-trip involved in that the response sends back an HTTP 100 Continue Status code and the client loads the new url whereas Server.Transfer passes the execution of the page on to the specified page instance which then is loaded and returned in the context of the original request.
RE: what is the difference between Response.Redirect and Server.Transfer
Response.Redirect
Page redirect to another page. Value display another page. It's allow referesh the page. It's support for Html Page. We can see the query string value in browser
Response.Transfer
Page Redirect to same Page. Value dispaly same page. It's doesn't allow refersh the page. It's doesn't support for Html Page We can't see the query string value in browser