InterviewSolution
Saved Bookmarks
| 1. |
What’s the difference between Response .Redirect and Server.Transfer? |
|
Answer» SERVER.Transfer sends INFORMATION from one web request to ANOTHER on the server SIDE, But, Response.Redirect sends an HTTP 302 MESSAGE to the browser and implements a redirect in the browser. |
|