Javascrit Reference in Two Diffrent HTML pages

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?TmV0YWpp?=

    Javascrit Reference in Two Diffrent HTML pages

    hi experts,

    We have a requirement in which we want to pass the information between two
    different html/asp pages which are not related (no parent child relationship
    is present, hence opener cannot be used for accessing the pages)

    Eg,

    Page1 contains textbox page_text1
    Page2 contains textbox page_text2

    If we enter vaue in textbox page_text1 on page1, the same value should get
    passed in textbox page_text2 present on page 2 using javascript.


  • Leon Mayne

    #2
    Re: Javascrit Reference in Two Diffrent HTML pages

    "Netaji" <Netaji@discuss ions.microsoft. comwrote in message
    news:8163507D-D318-4C5B-9483-C7C3B278AD09@mi crosoft.com...
    hi experts,
    >
    We have a requirement in which we want to pass the information between two
    different html/asp pages which are not related (no parent child
    relationship
    is present, hence opener cannot be used for accessing the pages)
    >
    Eg,
    >
    Page1 contains textbox page_text1
    Page2 contains textbox page_text2
    >
    If we enter vaue in textbox page_text1 on page1, the same value should get
    passed in textbox page_text2 present on page 2 using javascript.
    Does it have to be using javascript? If so then you could either use a
    cookie, or page 1 links to page two using a querystring variable and the
    javascript on page2 pulls the value out.
    If you can do it using .NET then I would though! You could set a session
    variable for the value then.

    Comment

    Working...