I rename a frame in the frameset from "manu" to "menu" and on an asp page it changes the target back to "manu" once i reopen it. It also opens the page in a new window instead of refreshing the "menu" frame
Any ideas?
The link which is pointing to "manu" is it being created by you using ASP, or is it a static link in your page?
The reason you are opening a new window is that the target "manu" is not found, so it opens a new window for it. The two things are really part of the same thing.
Post the code - especially for the frameset. Derren
[The only person in the world to like Word]
function navbar()
{
var win;
win = window.open("../home/navbar.asp", "manu"
win.creator = self;
return (win);
}
This is the ASP code and leaving the target as manu it opens in a new window yet if i change the target to header it opens in the ehader frame
It's getting late here, but on first inspection I noticed that you have two frames called "manu". Maybe this is confusing the hell out of the poor old script. Try renaming on eof the frames ... Derren
[The only person in the world to like Word]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.