Dynamically navigating a web page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • surajfarakate
    New Member
    • Apr 2010
    • 1

    Dynamically navigating a web page

    Hii ,
    I want to create an asp form with 2 option buttons and a submit button
    Values for these 2 option button contains the addresses of two diff web pages.
    when submit button is pressed page should be navigated to the selected address
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    you can do it with asp, on the form-handling page, you will use
    Code:
    response.redirect request.form("radioButtonName")
    but it would be easier with javascript.

    Jared

    Comment

    Working...