Home > Articles

This chapter is from the book

Navigation Between Pages

A typical Web application is a collection of Web pages linked with each other. In Chapter 2, I discussed the HyperLink control that allows a user to navigate to a different Web page when the hyperlink is clicked. However, there is frequently a need to navigate to a Web page programmatically. ASP.NET provides the following methods for programmatically navigating between pages.

  • Response.Redirect()

  • Server.Transfer()

  • Server.Execute()

I'll discuss each of these techniques in turn.

The Response.Redirect() Method

The Response.Redirect() method causes the browser to connect to the specified URL. When the Response.Redirectc) method is called, it creates a response whose header contains a 302 (Object Moved) status code and the target URL. When the browser receives this response from the server, it uses the header information to generate another request to the new URL. When using the Response.Redirect() method, the redirection happens at the client side and involves two round trips to the server.

You should use the Response.Redirect() method in the following cases:

  • You want to connect to a resource on any Web server.

  • You want to connect to a non ASPX resource (such as an HTML file).

  • You want to pass the query string as part of the URL.

The Server.Transfer() Method

The Server.Transfer() method transfers the execution from the current ASPX file to the specified ASPX file. The path specified to the ASPX file must be on the same Web server.

When the Server.Transfer() method is called from an executing ASPX page the current ASPX page terminates execution and the control is transferred to another ASPX page. The new ASPX page still uses the response stream created by the prior ASPX page. When this transfer occurs, the URL in the browser still shows the original page because the redirection occurs on the server side and the browser remains unaware of this transfer.

When you want to transfer the control to an ASPX page residing on the same Web server, you should use Server.Transfer() instead of Response.Redirect() because Server.Transfer() will avoid the unnecessary round trip and provide better performance and a better user experience.

The default use of the Server.Transfer() method does not pass the form data and the query string of the original page request to the transferred page. But, you can preserve the form data and query string of the original page by passing a True value to the optional second argument, preserveForm, of the Server.Transfer() method. The second argument takes a Boolean value that indicates whether to preserve form and query string collection.

When you set the second argument to True, you need to be aware of one thing: The destination page uses the same response stream that was created by the original page, and therefore the hidden _VIEWSTATE field of the original page is also preserved in the form collection. The ViewState is page-scoped and is valid for a particular page only. This causes the ASP.NET machine authentication check (MAC) to announce that the ViewState of the new page has been tampered with. Therefore, when you choose to preserve the form and query string collection of the original page, you must set the EnableViewStateMac attribute of the Page directive to false for the destination page.

The Server.Execute() Method

The Server.Execute() method allows the current ASPX page to execute a specified ASPX page. The path to the specified ASPX file must be on the same Web server.

After the specified ASPX page is executed, the control transfers back to the original page from which the Server.Execute() method was called. This technique of page navigation is analogous to making a function call to an ASPX page.

The called ASPX page has access to the form and query string collections of the calling page and thus for the reasons explained in the previous section, you need to set the EnableViewStateMac attribute of the Page directive to false on the executed page.

By default, the output of the executed page is added to the current response stream. This method also has an overloaded version in which the output of the redirected page can be fetched in a TextWriter object instead of adding the output to the response stream. This helps you to control where to place the output in the original page.

NOTE

Bad HTML Code The output returned to the browser by the Server.Execute() and Server.Transfer() may contain multiple <html> and <body> tags as the response stream remains the same while executing another ASPX pages. Therefore, the resulting output by calling these methods may contain bad HTML code.

STEP BY STEP 3.13 - Using the Response.Redirect(), Server.Transfer(), and Server.Execute() Methods

  1. Add a new Web Form named StepByStep3-13.aspx to your project. Add three Label controls, a Literal control (litDynamic), two TextBox controls (txtRows, txtCells) and three button controls (btnTransfer, btnExecute, and btnRedirect) to the new Web Form as shown in Figure 3.12.

Figure 3.12Figure 3.12 Design of a form that allows you to specify rows and columns to create a table dynamically.

  1. Add a line of code at the top of the Web Form's module:

    Imports System.IO

  2. Add code to handle the events of the Button controls:

    Private Sub btnRedirect_Click( _
     ByVal sender As System.Object, _
     ByVal e As System.EventArgs) _
     Handles btnRedirect.Click
      ' Calling Response.Redirect by passing
      ' Rows and Cells values as query strings
      Response.Redirect("StepByStep3-13a.aspx?Rows=" & _
       txtRows.Text + "&Cells=" + txtCells.Text)
    End Sub
    
    Private Sub btnTransfer_Click( _
     ByVal sender As System.Object, _
     ByVal e As System.EventArgs) _
     Handles btnTransfer.Click
      ' Writing into Response stream
      Response.Write( _
       "The following table is generated " & _
       "by the StepByStep3-13a.aspx page:")
      ' Calling the Server.Transfer method
      ' with the second argument set to true
      ' to preserve the form and query string data
      Server.Transfer("StepByStep3-13a.aspx", True)
      ' Control does not come back here
    End Sub
    
    Private Sub btnExecute_Click( _
     ByVal sender As System.Object, _
     ByVal e As System.EventArgs) Handles btnExecute.Click
      ' Creating a StringWriter object
      Dim sw As StringWriter = New StringWriter()
      ' Calling the Server.Execute method by
      ' passing a StringWriter object
      Server.Execute("StepByStep3-13a.aspx", sw)
      ' Control comes back
      ' Displaying the output in the StringWriter
      ' object in a Literal control
      litDynamic.Text = sw.ToString()

    End Sub

  3. Add a new Web Form to the project. Name the Web Form StepByStep3-13a.aspx. Change the pageLayout property of the DOCUMENT element to FlowLayout.

  4. Add a Table control (tblDynamic) from the Web Forms tab of the Toolbox on the Web Form.

  5. Switch to the HTML view of StepByStep3_11a.aspx file and modify the @Page directive to add the EnableViewStateMac="false" attribute:

    <%@ Page Language="vb" AutoEventWireup="false"
     Codebehind="StepByStep3-13a.aspx.vb"
     Inherits="_305C03.StepByStep3_13a"

    EnableViewStateMac="false"%>

  6. Switch to code view and add the following method to the class definition:

    Private Sub CreateTable(ByVal intRows As Int32, _
     ByVal intCells As Int32)
      ' Create a new table
      Dim trRow As TableRow
      Dim tcCell As TableCell
    
      ' Iterate for the specified number of rows
      Dim intRow As Integer
      Dim intCell As Integer
      For intRow = 1 To intRows
        ' Create a row
        trRow = New TableRow()
        If intRow Mod 2 = 0 Then
          trRow.BackColor = Color.LightBlue
        End If
        ' Iterate for the specified number of columns
        For intCell = 1 To intCells
          ' Create a cell in the current row
          tcCell = New TableCell()
          tcCell.Text = "Cell (" & _
           CStr(intRow) & "," & _
           CStr(intCell) & ")"
          trRow.Cells.Add(tcCell)
        Next
        ' Add the row to the table
        tblDynamic.Rows.Add(trRow)
      Next
    End Sub
  7. Add the following code in the Page_Load() event handler:

    Private Sub Page_Load(ByVal sender As System.Object, _
     ByVal e As System.EventArgs) Handles MyBase.Load
      If Not Request.Form("txtRows") Is Nothing Then
        ' If the request contains form data then the
        ' page is called from the Server.Transfer or
        ' Server.Execute method from the
        ' StepByStep3_13.aspx page. Get the Rows and
        ' Cells value from the form collection and
        ' Create a table.
        CreateTable(Int32.Parse( _
         Request.Form("txtRows")), _
          Int32.Parse(Request.Form("txtCells")))
      ElseIf Not Request.QueryString("Rows") _
       Is Nothing Then
        ' If the request contains query string data
        ' that means the response is redirected from
        ' StepByStep3_14.aspx page. Get the Rows and
        ' Cells values from the query string and
        ' Create a table.
        Response.Write("StepByStep3_13a.aspx:")
        CreateTable( _
         Int32.Parse(Request.QueryString("Rows")), _
         Int32.Parse(Request.QueryString("Cells")))
      End If
    End Sub
  8. Set StepByStep3_13.aspx as the start page for the project.

  9. Run the project. Enter the number of rows and cells and click all three buttons one by one. When you click the Redirect button, the browser is redirected to StepByStep3-13a.aspx and passes the rows and cells values as the query string data, as shown in Figure 3.13. When you click the Transfer button, the browser doesn't change the page name in the location bar but the control gets transferred to the StepByStep3-13a.aspx page as shown in Figure 3.14. Finally, when you click the Execute button, the StepByStep3-13a.aspx page is executed and control comes back to the calling page where the output of Server.Execute() method is displayed as shown in Figure 3.15.

Figure 3.13Figure 3.13 The Response.Redirect() method can be use to navigate to a URL that contains query strings.

Figure 3.14Figure 3.14 The Server.Transfer() method is used to navigate to an ASPX page on the same server without causing an additional round trip.

Figure 3.15Figure 3.15 The Server.Execute() method executes the specified ASPX page and returns the control back to the calling page.

Review Break

  • The Response.Redirect() method can be used to connect to any specified URL. The specified URL can point to any resource and may also contain query strings. The use of Response.Redirect causes an additional round trip to the server.

  • The Server.Transfer() method performs a server-side redirection of a page. The use of Server.Transfer() avoids an extra round trip but only works with an ASPX file residing in the same Web application on the same Web server. Also, when you use the Server.Transfer method, any query string on the original request is not automatically passed to the new page.

  • The Server.Execute method is like a function call to an ASPX file. This method executes the specified ASPX file and then returns execution to the calling ASPX page. The file specified as an argument to the Server.Execute() must be an ASPX file residing on the same Web server and the argument should not contain query string data.

Pearson IT Certification Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Pearson IT Certification and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Pearson IT Certification products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.pearsonitcertification.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020