Navigating from one form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krisssgopi
    New Member
    • Apr 2010
    • 39

    Navigating from one form

    Hi All,

    Please help me how to navigate from one form to another form. am using asp.net with vb.net as code begin please help me how to navigate.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Well you could use an ASP.NET HyperLink control to navigate from one page to another. When you click an ASP.NET hyperlink you will be taken to the page that is specified as the NavigationURL for it (which is translated into the "href" value when it is rendered as HTML).

    Or, if you prefer you could use a Button or LinkButton to do the task. In this case the page will submit to the server and you will have to implement a function that handles the click event for the button/linkbutton control. In this method you could use the Response.Redire ct() method or the Server.Transfer () method to move the user to another page. I would recommend that you stick with the Response.Redire ct() method because it is much easier to understand than Server.Transfer .

    -Frinny

    Comment

    • semomaniz
      Recognized Expert New Member
      • Oct 2007
      • 210

      #3
      If the forms are interconnected then i suggest you use the wizard control. You will not have to create multiple forms to achieve this . Wizard control allows you to create multiple forms and allows easy navigation between the forms.

      Comment

      • krisssgopi
        New Member
        • Apr 2010
        • 39

        #4
        Originally posted by semomaniz
        If the forms are interconnected then i suggest you use the wizard control. You will not have to create multiple forms to achieve this . Wizard control allows you to create multiple forms and allows easy navigation between the forms.
        Thank you very much

        Comment

        Working...