Name: rlT66838 Date: 11/09/99
I have an applet through which a JDialog is invoked.
In the JDialog, I trap the button pressed in the actionPerformed method and then try to load an HTMl Page through show document
In IE 4.0 ,in case the frame parameter passed is "_self" , the page is not loaded.
In case another parameter is used , such as "_blank" or a frame name, the page is loaded correctly.
This works on Netscape, without any problem.
also, it used to work on the previous version of the plugin 1.1.2 without any problem.
Platform used - Windows95 , jdk1.1.8 with Swing/JFC 1.1.1
Snippet of the code
String url = myAppletInstance().getCodeBase() + "abc.html";
myAppletInstance().getAppletContext().showDocument(new URL url),"_self");
(Review ID: 93551)
======================================================================