Managing ASP.NET Navigation
by Mike Gunderloy04/08/2003
In an ASP.NET application, you can move between Web Forms in a variety of ways: with hyperlinks, with Response.Redirect, with Server.Transfer, or with Server.Execute. In this article, I will take a look at these various navigation methods and help you choose the appropriate one for your application.
Hyperlinks
The simplest possible way to navigate from one Web Form to another is with an HTML hyperlink control. On a Web Form, that might look like this:
<a href="WebForm2.aspx">WebForm2</a>
When the user clicks on the hyperlink, WebForm2.aspx is served up to their browser. You can use this technique just about anywhere, including on HTML pages and in classic ASP. ASP.NET gives you another alternative, the HyperLink Web Server control:
<form id="Form1" method="post" runat="server">
<asp:HyperLink id="HyperLink1" runat="server"
NavigateUrl="WebForm2.aspx">WebForm2</asp:HyperLink>
</form>
At runtime, this HTML has exactly the same effect as the first example, since
ASP.NET renders the HyperLink Web Server control as an HTML hyperlink control.
There is one key difference, though: the Web Server control can be programmed on
the server side. In particular, you can change its NavigateUrl property in code,
opening up the possibility of a hyperlink whose destination depends on some part
of your application's state:
Private Sub Button1_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click
HyperLink1.NavigateUrl = "WebForm3.aspx"
End Sub
If the user clicks on the hyperlink after this code has executed, then the link will serve up WebForm3.aspx instead of WebForm2.aspx.
Controlling Transfers Yourself
Although hyperlinks do transfer your application from one page to another,
they do so completely under the control of the user. Sometimes it's convenient
to control the entire process in code yourself, including deciding when to move
to another page. As it happens, ASP.NET provides three different methods to
accomplish this. You can call the Redirect method of the Response object, or the
Transfer or Execute methods of the Server object. Although they behave very
similarly, there are differences between these three methods.
Response.Redirect
The Response.Redirect method causes the browser to connect to a specified URL.
When the Response.Redirect() 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 this header information to generate
another HTTP 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: one to request the original page, which is met by the 302 response,
and then a second to request the redirected page.
|
Related Reading .NET Framework Essentials |
Server.Transfer
The Server.Transfer method transfers execution from the current ASPX file
to another ASPX file on the same web Server. When your code calls the
Server.Transfer method, the current ASPX page terminates execution and the
flow of control is transferred to another ASPX page. The new ASPX page still
uses the response stream created by the prior ASPX page. When you use this
method to navigate between pages, the URL in the browser still shows the
original page, because the redirection occurs on the server side and the browser
remains unaware of the transfer.
By default, the Server.Transfer method does not pass the form data or 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 setting the
optional second argument of the method to True. When you use this technique,
though, you need to 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 ends up on the second page. This causes
the ASP.NET machine authentication check (MAC) to assume 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.
Pages: 1, 2 |


