Frames

  • Thread starter Thread starter Sueffel
  • Start date Start date
S

Sueffel

I have a page with 3 frames, _main, _menu, and _header

I need to be able to, in code-behind, change the source of _main frame from
_menu frame by using a button.

Thanks,
Sueffel
 
Cant be done.
You cant access the browser from code-behind.

A workaround is:
response.write("<SCRIPT>window.open('newpage.aspx','_mainframe');</SCRIPT>")

HTH
 
Back
Top