Click here to Skip to main content
Click here to Skip to main content

Transferring page values to another page

By , 21 Aug 2004
 

Sample screenshot

Introduction

We always come into situations in which we need to transfer values from one page to another page. In this article, I will show you some ways of transferring values from page to page. The page I created in this example is really simple which consists of a text field and a few buttons. The data entered in the text field will be transferred to another page by using different methods labeled on the buttons.

Using the code

Response.Redirect

Let's first see how to transfer using Response.Redirect method. This maybe the easiest of them all. You start by writing some data in the text field, and when you finish writing the data, you press the button labeled 'Reponse.Redirect'. One tip that I would like to share with you is, sometimes we want to transfer to another page inside the catch exception, meaning exception is caught and we want to transfer to another page. If you try to do this, it may give you a System.Threading exception. This exception is raised because you are transferring to another page leaving behind the thread running. You can solve this problem using:

Response.Redirect("WebForm5.aspx",false);

This tells the compiler to go to page "WebForm5.aspx", and "false" here means that don't end what you were doing on the current page. You should also look at the System.Threading class for threading issues. Below, you can see the C# code of the button event. "txtName" is the name of the text field whose value is being transferred to a page called "WebForm5.aspx". "Name" which is just after "?" sign is just a temporary response variable which will hold the value of the text box.

private void Button1_Click(object sender, System.EventArgs e)
{
    // Value sent using HttpResponse
    Response.Redirect("WebForm5.aspx?Name="+txtName.Text);
}

Okay, up till this point, you have send the values using Response. But now, where do I collect the values, so in the "WebForm5.aspx" page_Load event, write this code. First, we check that the value entered is not null. If it's not, then we simply display the value on the page using a Label control. Note: When you use Response.Redirect method to pass the values, all the values are visible in the URL of the browser. You should never pass credit card numbers and confidential information via Response.Redirect.

if (Request.QueryString["Name"]!= null)
    Label3.Text = Request.QueryString["Name"];

Cookies

Next up is cookies. Cookies are created on the server side but saved on the client side. In the button click event of 'Cookies', write this code:

HttpCookie cName = new HttpCookie("Name");
cName.Value = txtName.Text; 
Response.Cookies.Add(cName); 
Response.Redirect("WebForm5.aspx");

First, we create a cookie named "cName". Since one cookie instance can hold many values, we tell the compiler that this cookie will hold "Name" value. We assign to it the value of the TextBox and finally add it in the Response stream, and sent it to the other page using Response.Redirect method.

Let's see here how we can get the value of the cookie which is sent by one page.

if (Request.Cookies["Name"] != null )
    Label3.Text = Request.Cookies["Name"].Value;

As you see, it's exactly the same way as we did before, but now we are using Request.Cookies instead of Request.QueryString. Remember that some browsers don't accept cookies.

Session Variables

Next we see the session variables which are handled by the server. Sessions are created as soon as the first response is being sent from the client to the server, and session ends when the user closes his browser window or some abnormal operation takes place. Here is how you can use session variables for transferring values. Below you can see a Session is created for the user and "Name" is the key, also known as the Session key, which is assigned the TextBox value.

// Session Created
Session["Name"] = txtName.Text; 
Response.Redirect("WebForm5.aspx");

// The code below shows how to get the session value.
// This code must be placed in other page.
if(Session["Name"] != null) 
    Label3.Text = Session["Name"].ToString();

Application Variables

Sometimes, we need to access a value from anywhere in our page. For that, you can use Application variables. Here is a small code that shows how to do that. Once you created and assigned the Application variable, you can retrieve its value anywhere in your application.

// This sets the value of the Application Variable
Application["Name"] = txtName.Text; 
Response.Redirect("WebForm5.aspx"); 

// This is how we retrieve the value of the Application Variable
if( Application["Name"] != null ) 
    Label3.Text = Application["Name"].ToString();

HttpContext

You can also use HttpContext to retrieve values from pages. The values are retrieved using properties or methods. It's a good idea to use properties since they are easier to code and modify. In your first page, make a property that returns the value of the TextBox.

public string GetName
{ 
    get { return txtName.Text; }
}

We will use Server.Transfer to send the control to a new page. Note that Server.Transfer only transfers the control to the new page and does not redirect the browser to it, which means you will see the address of the old page in your URL. Simply add the following line of code in 'Server.Transfer' button click event:

Server.Transfer("WebForm5.aspx");

Now, let's go to the page where the values are being transferred, which in this case is "webForm5.aspx".

// You can declare this Globally or in any event you like
WebForm4 w;

// Gets the Page.Context which is Associated with this page 
w = (WebForm4)Context.Handler;
// Assign the Label control with the property "GetName" which returns string
Label3.Text = w.GetName;

Special Note

As you see, there are various method in transferring values from one page to another. Each method has its own advantage and disadvantage. So, when you are transferring values, do your homework so that you have a better idea which approach is most feasible for you.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

azamsharp
Web Developer
United States United States
Member
I am the founder of knowledge base website, HighOnCoding, GridViewGuy, RefactorCode.com and ScreencastADay.com.
 
HighOnCoding is a website which will get you high legally with useful information. There are tons of articles, videos and podcasts hosted on HighOnCoding.
 
HighOnCoding.com www.HighOnCoding.com
 

My Blog:

Blog

 

Buy my iPhone app ABC Pop

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralVery good ArticlememberFahim saqib18 Nov '12 - 19:40 
GeneralMy vote of 5membersweet_zs12 Oct '12 - 16:27 
QuestionURL REDIRECTIONmemberMember 917112823 Sep '12 - 20:15 
QuestionSending many values in sessionmemberMember 805738224 Aug '12 - 18:57 
QuestionHow to get a value from a table and pass to next page?memberMember 805738223 Aug '12 - 18:40 
QuestionCan i have the same code for Response.Redirect in vb.net please?groupramamadhavi3 Aug '12 - 4:14 
GeneralMy vote of 5memberPankil_cool18 May '12 - 16:13 
Questionhow to detect button clickmemberhelloarun7922 Nov '11 - 8:33 
hi, In my scenario
 
I have four webpages in a website with no links to each other. my requirement is users will have all four pages open at remote locations. Any button click in three pages to be reflected in the fourth page automatically. how to update the fourth page automatically which is accessed remotely. Also when the three users click the button it should not be redirected to the fourth page.
GeneralMy vote of 5memberAdityakrishna8 Nov '11 - 15:27 
GeneralMy vote of 5memberanurag129012 Oct '11 - 4:15 
GeneralMy vote of 5membershwetabothra25 Oct '10 - 21:46 
QuestionHow to transfer secure data from aspx page to paypal...which transfer mathed is we have to use....? [modified]memberjigarchaudhari10 Aug '08 - 0:39 
GeneralNeeded directivememberFredParcells26 Feb '07 - 9:26 
GeneralCheckboxes...memberfuhaizah18 Sep '05 - 17:45 
GeneralRe: Checkboxes...memberenjoycrack18 Sep '05 - 20:09 
QuestionWhat if it's complex datasussShiliang21 Jun '05 - 17:28 
AnswerRe: What if it's complex datamemberenjoycrack18 Sep '05 - 20:11 
GeneralTransfer 2 valuesmemberizazz24 Feb '05 - 15:15 
GeneralRe: Transfer 2 valuesmemberChristian Graus24 Feb '05 - 15:44 
General[Message Deleted]memberDan Colasanti23 Sep '04 - 19:00 
GeneralRe: Missing Sample Code & Trade-Offsmemberazamsharp23 Sep '04 - 19:27 
GeneralRe: Missing Sample Code & Trade-OffssussAnonymous3 Nov '04 - 23:15 
GeneralRe: Missing Sample Code & Trade-OffsmemberJuanTLlibre15 Feb '05 - 12:44 
GeneralRe: Missing Sample Code & Trade-Offsmemberhalf_ex4 Aug '06 - 11:12 
GeneralRe: Missing Sample Code & Trade-OffsmemberJohn F Kennedy24 Oct '11 - 6:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 22 Aug 2004
Article Copyright 2004 by azamsharp
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid