---
title: "Main difference between Server.Transfer and Response.Redirect?"  
description: "Main difference between Server.Transfer and Response.Redirect?"  
author: "Sunil Singh"  
published: 2017-07-07  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/23274/main-difference-between-server-transfer-and-response-redirect  
category: "c#"  
tags: ["c#", "asp.net"]  
reading_time: 2 minutes  

---

# Main difference between Server.Transfer and Response.Redirect?

## Server.Transfer

Main difference between server.trasfer and response .redirect is that when we use server.trasfer our page processing transfers from one page to the other page without making a round-trip back to the client’s browser. Server.Trasfer provides a faster response with a little less overhead on the server. The clients url history list or current url Server does not update in case of Server.Transfer.

**Response.Redirect**

It sends a http request to the browser then after browser resends that request to the webserver then webserver deliver response.When we use Response.Redirect it redirect the user’s browser to another page or site. It also performs trip back to the client where the client’s browser is redirected to the new page. The user’s browser history list is updated to reflect the new address.

## Answers

### Answer by Sunil Singh

## Server.Transfer

Main difference between server.trasfer and response .redirect is that when we use server.trasfer our page processing transfers from one page to the other page without making a round-trip back to the client’s browser. Server.Trasfer provides a faster response with a little less overhead on the server. The clients url history list or current url Server does not update in case of Server.Transfer.

**Response.Redirect**

It sends a http request to the browser then after browser resends that request to the webserver then webserver deliver response.When we use Response.Redirect it redirect the user’s browser to another page or site. It also performs trip back to the client where the client’s browser is redirected to the new page. The user’s browser history list is updated to reflect the new address.


---

Original Source: https://www.mindstick.com/interview/23274/main-difference-between-server-transfer-and-response-redirect

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
