Frameset.

  • Thread starter Thread starter ashoo
  • Start date Start date
A

ashoo

I am using frameset. How do I redirect my result to the
content page when a user select an item from a
dropdownlist in the header section/page?

Thanks
 
Hi,
you need to use javascript to obtain a reference to the
other frames on your page.
If the frame you want to redirect the results to is
called 'bottom' then the script is
document.parent.frames.bottom.location.href
= "somepage.aspx?resultshere=something"

alex
 
Back
Top