problem with Internet Explorer

I have a frames problem with internet explorer,

when I use this java code in a frames page:

URL newLocation = new URL (WiskhintLibrary.servletURL +"/"+ sessie +"/Hoofdscherm.html");

this.getAppletContext().showDocument(newLocation);

The program should now go back to a no frames page

but explorer doesn't kill the frames, and netscape does.

can anyone help me with this problem?

[443 byte] By [JPZ] at [2007-9-26 8:17:14]
# 1
Convince people that M$ is evil and make them all use netscape?By the way, what do you mean with "killing the frames"? Maybe you want to load the document in the "_top" frame or in a "_blank" frame using the other showDocument?
jsalonen at 2007-7-1 18:48:00 > top of Java-index,Archived Forums,New To Java Technology Archive...
# 2

I'd say that the Netscape implementation was wrong - by default HTML links stay in the same frame; there's no need to use _self. I don't think that the API documentation is very clear on this so there's room for interpretation.

Anyway, the suggestion is right - use

showDocument(url, "_top") or showDocument(url, "_parent").

KPSeal at 2007-7-1 18:48:00 > top of Java-index,Archived Forums,New To Java Technology Archive...