Description: 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:...