Performing Page Navigation (Scenario 2)
Not all page navigation scenarios are initiated through hyperlinks on the client.
Client-side page redirects or navigations can also be initiated from the
server by an ASP.NET page developer by calling the Response.Redirect(url) method.
This is typically done when server-side validation is required on some client
input before the navigation actually takes place.
The following sample demonstrates how to use the Response.Redirect
method to pass parameters to another target page. It also demonstrates how to easily get access to these parameters from the target
page.
Copyright 2001-2002 Microsoft Corporation. All rights reserved.