Passing data between 2 form !

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a frameset page with 2 frame, each with a form. Can I pass data (variable) between them ? Thank's
 
I have a frameset page with 2 frame, each with a form. Can I pass data
(variable) between them ? Thank's
Yes, but it is done using client scripting, i.e. JavaScript.
 
of course, for example by using javascript, or by posting one form to
another (this is old asp way)
javascript way would be smth like :

window.parent.frames['name']. .... hope you get the idea
 
of course, for example by using javascript,
window.parent.frames['name']. .... hope you get the idea
correct

or by posting one form to another (this is old asp way)

not with frames.
 
Back
Top