Quick URL redirect question

  • Thread starter Thread starter Roger Helliwell
  • Start date Start date
R

Roger Helliwell

My site uses frames, and I need to reload specific frames individually. For
example target="mainpanel" or target="_top". Response.Redirect() doesn't seem
allow for named targets.

Thanks,
Roger
 
The target has already been decided by the client at the point the page is
being request on the server. The only way to determine the target is on the
client. If you need to refresh frame A from a button in frame B I would
expect you to have to attach some javascript to the button to do so.


--
Pete
-------
http://www.DroopyEyes.com
Audio compression components, DIB Controls, FastStrings

http://www.HowToDoThings.com
Read or write articles on just about anything
 
Peter Morris said:
The target has already been decided by the client at the point the page is
being request on the server. The only way to determine the target is on the
client. If you need to refresh frame A from a button in frame B I would
expect you to have to attach some javascript to the button to do so.

Oh! Of course... I just discovered that you can supply the <form> with a
target="_parent" attribute as well. All buttons on that form will cause a
reload into the main frame.
 

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