posted 16 years ago
It's rather difficult to display a web page in a Java GUI, so let's stay with displaying it in the browser.
In the applet class you can call the "getAppletContext().showDocument(...)" method. If you pass it just a single parameter, the page will replace the current page (which contains the applet). If you want to display the page in a new window, you need to use the showDocument call that takes two parameters.