---
title: "Unable to implement the Server.Transfer"  
description: "Unable to implement the Server.Transfer"  
author: "Rajesh Goswami"  
published: 2010-10-23  
updated: 2026-05-15  
canonical: https://www.mindstick.com/forum/55/unable-to-implement-the-server-transfer  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Unable to implement the Server.Transfer

please give the example of this [problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic)\
thanks\

## Replies

### Reply by Amit Singh

see this link on server.transfer method\
http://www.mindstick.com/Blog/38/Server%20Transfer%20how%20use%20it\
\

### Reply by Amit Singh

Server.Transfer is used as response.redirect but it give the better and fast result as redirect.\
we use server.transfer in our application as\
step 1:\
we take one textbox and one button on home page and write the code on button click as\
Server.Transfer("Default.aspx");\
step 2;\
we get the value of textbox of home page by\
write this code on default.aspx\
Page page1 = this.PreviousPage;\
TextBox t = (TextBox)page1.FindControl("TextBox1");\
Response.Write(t.Text);\


---

Original Source: https://www.mindstick.com/forum/55/unable-to-implement-the-server-transfer

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
