If the bottom frame name is frame_bottom then from the top frame button
event call...
top.frame_bottom.document.href = "PageBottom?Item1=val1&Item2=val2
let me know if this works for you, if not i can send some samples.
you can also change the target and action in your form for the top frame to
point to the bottom frame and use request.form.
formtop.target = "frame_bottom"
formtop.action = "bottomform.aspx"
formtop.submit()
Timothy Elvidge said:
In a two frameset split horizontally. How do I have a button in one frame
(the menu frame) request the (details) frame to display itself with
parameters. I.e in the top frame various options are selected and a button
is then clicked. I then want the details frame to display the results using
the parameters from the menu frame.