2014. 1. 20. 18:23
Please mark as Answer if post help you
'메모' 카테고리의 다른 글
DataRow Null 값확인 (0) | 2014.02.19 |
---|---|
.NET 관련 자료 - 마이크로소프트웨어 세미나 (0) | 2014.02.10 |
말줄임표 (0) | 2014.01.20 |
Create a Dynamic Pie Chart in SharePoint using JQuery & Google Chart API (0) | 2014.01.08 |
IIS Session Timeout vs ASP.NET Session Timeout (0) | 2014.01.06 |
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/