Thursday, May 13, 2010

Pass Values between ASP.NET Web Pages

If your application redirects (navigates) from one ASP.NET Web page to another, you will frequently want to pass information from the source page to the target page. For example, you might have a page where users can select items to purchase. When users submit the page, you want to call another page that can process the information that the user has entered.
You can pass information between pages in various ways, some of which depend on how the redirection occurs. The following options are available even if the source page is in a different ASP.NET Web application from the target page, or if the source page is not an ASP.NET Web page:
-Use a query string.
-Get HTTP POST information from the source page.
The following options are available only when the source and target pages are in the same ASP.NET Web application.
-Use session state.
-Create public properties in the source page and access the property values in the target page.
-Get control information in the target page from controls in the source page.

Using a Query StringWhen you use a hyperlink or Response.Redirect to navigate from one page to another, you can add information in a query string at the end of the URL.
Note: Never pass sensitive data using a query string, because the information is visible to users and can easily be modified, thus representing a potential security risk.

To use a query string to pass information
1. In the source page when you specify the URL of the target page, include the information that you want to pass in the form of key-value pairs at the end of the URL. The first pair is preceded by a question mark (?) and subsequent pairs are preceded by ampersands (&), as shown in the following example:

http://contoso.com/products.aspx?field1=value1
http://contoso.com/products.aspx?field1=value1&field2=value2

2. In the target page, access query string values by using the QueryString property of the HttpRequest object, as shown in the following example:
String s = Request.QueryString["field1"];

Getting Post Information from the Source PageWhen the source page uses the HTTP POST action to navigate to the target page, you can retrieve posted values from the Form collection in the target page. Note that you can get only the post values; you cannot read the values of arbitrary controls on the page.

To get the values of controls from the source page in another applicationIn the source page, include a form element that contains HTML elements (such as input or textarea) or ASP.NET server controls (such as TextBox or DropDownList controls) that post values when the form is submitted.

In the target page, read the Form collection, which returns a dictionary of name/value pairs, one pair for each posted value.

The following code example displays the ID and value of every posted control in the source page and displays the posted values in a label named Label1.

Post information from an ASP.NET Web pages includes the values of hidden fields, such as __VIEWSTATE, __EVENTTARGET, and __EVENTARGUMENT, which are used for internal processing in the page. The following code example excludes the values of posted fields that are named with a leading double underscore (__).

void Page_Load(object sender, EventArgs e)
{
System.Text.StringBuilder displayValues =
new System.Text.StringBuilder();
System.Collections.Specialized.NameValueCollection
postedValues = Request.Form;
String nextKey;
for(int i = 0; i < postedValues.AllKeys.Length; i++) { nextKey = postedValues.AllKeys[i]; if(nextKey.Substring(0, 2) != "__") { displayValues.Append(" "); displayValues.Append(nextKey); displayValues.Append(" = "); displayValues.Append(postedValues[i]); } } Label1.Text = displayValues.ToString(); } Using Session StateInformation in session state is available to all ASP.NET Web pages in the current application. However, session state takes server memory, and the information is stored until the session expires, which can be more overhead than you want for simply passing information to the next page.

Session ["field1"] = "value1";

Getting Public Property Values from the Source PageIf you are designing the source page specifically for sharing information with target pages, and both pages are ASP.NET Web pages in the same Web application, you can add public properties in the source page that expose information you want to share between pages. You can then read the values of the properties in the target pages.

This strategy works in two situations:
-When the source page cross-posts to the target page.
-When you call the Transfer method to transfer execution from the source to the target page on the server.

To get public property values from the source page1. On the source page, create one or more public properties and save the page.
The following code example shows a property named CurrentCity that exposes the value of a TextBox control named textCity.
public String CurrentCity
{
get
{
return textCity.Text;
}
}

2. On the target page, add an @ PreviousPageType page directive that points to the source page.
The following code example shows a PreviousPageType directive that references a source page named SourcePage.aspx.

The PreviousPageType directive causes the page's PreviousPage property to be typed to the source page class.

3. In target page code, use strongly typed members of the PreviousPage property to read the source code properties.
The following code example reads the value of the CurrentCity property that is defined in the source page.

Label1.Text = PreviousPage.CurrentCity;

Getting Control Information from the Source Page in the Same Application
If the source and target pages are both ASP.NET Web pages and in the same Web application, you can read the values of controls on the source page while in the target page. You might use this strategy if the source page does not expose public properties containing the information you need.

To get the values of controls from the source page in the same applicationOn the target page, get a reference to the source page by using the target page's PreviousPage property, and then call the FindControl method to get a reference to the control you want.

The following code example gets the value of the source page's TextBox1 control and displays it in the control named Label1:

if (PreviousPage != null)
{
TextBox SourceTextBox =
(TextBox) PreviousPage.FindControl("TextBox1");
if (SourceTextBox != null)
{
Label1.Text = SourceTextBox.Text;
}
}

The FindControl method finds controls in the current naming container. If the control you are looking for is inside another control, you must first get a reference to the container, and then search the container to find the control that you want. A typical example of this situation is when the previous page is a master page and the control that you want to find is inside a ContentPlaceHolder control. The following example is similar to the previous one except that it assumes that TextBox1 is located in a ContentPlaceHolder control that is named ContentPlaceHolder1:

if (PreviousPage != null)
{
Control placeHolder =
PreviousPage.Controls[0].FindControl("ContentPlaceHolder1")
TextBox SourceTextBox =
(TextBox)placeHolder.FindControl("TextBox1");
if (SourceTextBox != null)
{
Label1.Text = SourceTextBox.Text;
}
}

Download Article

No comments:

Post a Comment