Updating one form from another

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • TGriffith

    Updating one form from another

    I have a function and OPEN.WINDOW event that occurs when the suer presses a
    button. I want to set a value in the New Window and upate a value on the
    parent form. Is this a javascript solution only? If so, does anyone have
    examples of updating the server side controls or an HTML (extra form)?
  • Curt_C [MVP]

    #2
    Re: Updating one form from another

    TGriffith wrote:[color=blue]
    > I have a function and OPEN.WINDOW event that occurs when the suer presses a
    > button. I want to set a value in the New Window and upate a value on the
    > parent form. Is this a javascript solution only? If so, does anyone have
    > examples of updating the server side controls or an HTML (extra form)?[/color]

    use the window.open to pass the variable in the QueryString to the new
    window...

    As for updating it on the current form.. you can do it in the postback,
    if you are using it, or with clientside javascript.. your choice.

    --
    Curt Christianson
    site: http://www.darkfalz.com
    blog: http://blog.darkfalz.com

    Comment

    Working...