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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top