posted by 네코냥이 2014. 1. 20. 18:23

Re: Difference between Server.Execute and Server.Transfer and Response.Redirect

Jul 27, 2011 05:55 AM|LINK

Response.redirect just navigates to another page. It's is similar to clicking a hyperlink.

Server.Transfer ends the current web form and begin executing a new web form.

Server.Execute begins executing a new web form while still displaying the current web form.The contents of both forms are combined.

http://forums.asp.net/t/849073.aspx

http://digcode.com/default.aspx?g=posts&t=353 

http://stackoverflow.com/questions/4660501/response-redirect-vs-server-transfer-redirect-as-a-suggestion 

http://www.dotnetuncle.com/difference/82_servertransfer_responseredirect.aspx 

http://techahead.wordpress.com/2007/10/14/aspnet-servertransfer-vs-serverexecute/ 


Please mark as Answer  if post help you