Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Passing date from top frame to bottom . . .


  • From: walter at torres.ws (Walter Torres)
  • Subject: [Javascript] Passing date from top frame to bottom . . .
  • Date: Sun Oct 26 00:25:45 2003

mmm, sounds like 2 different questions.

Do you want to pass a value from frame 'A' to frame 'B' will processing on
the server, via ASP?

Do you want the user to do something in frame 'A' and then a value be passed
to frame 'B' on the client side?

It sounds like the latter to me, but I need to make sure.

If it's the latter...


name each frame, 'foo' & 'bar'

within 'foo'...

     top.bar.myVar = top.foo.varDatePick

of course, 'myVar' needs to be created in 'bar' for the value to be placed
there.

That will do it!

Hope this helps.

Walter