Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

pass variables from 1 frame to next w/o cookies 1

Status
Not open for further replies.

jkalos

IS-IT--Management
Oct 24, 2000
6
US
i tried using a hidden field without much luck. lets say i have two frames with my script in the one on the "left", and if i put the field on the "left", and update it on the "right", its value always comes up null. if i put it on the "right", the update works, but the first time it dies as an undefined object.

is there a way to trap undefined objects or a better way to pass variables?

thanks
 
you can access a variable in another frame like so:

parent.framename.thing_you_want

or

parent.frames[frameindex].thing_you_want

or

parent.frames["framename"].thing_you_want

these should work fine jared@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top