How to create a session: to stay during navigation from one page to another

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Stephn Mina
    New Member
    • Oct 2010
    • 1

    How to create a session: to stay during navigation from one page to another

    I am modifying an ASP Classic project, first page have drop down consists of several languages. when I navigate form one page to another page I want the form to remmeber which language is used. On first page I created "div" to hold the introductory page based on the choosen language.
    ex:if language is Spanish will show some spanish instruction...a nd next page will be in Spanish...

    When I go back I want the SESSION to remeber which language was selected and display the information on that language without letting the user to RE-Select his/her language from the drop down.

    Thank you,
    Stephen
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    This is easier to do than to ask on a forum. For example if you post this in a form with an input name "lang" than in the form handler say
    Code:
    session("lang") = request("lang")
    Jared

    Comment

    Working...