Hi,
I have to open a new HTML page(
jsp infact ) from
applet, i know i can use
getAppletContext().showDocument(new URL("http://www.javasoft.com"), "_blank");
to do so , but i dont want to have any title bar,scroll bar , and any menu items on the new HTML ,
it is like opening a window.open from javascript.
Is it possible to do so, also i want to send parameters from applet to jsp, which i plan to use applet to
servlet communication, so i dont want to use javascript.
or is there a way to open a new window from servlet, so i can call a servlet from applet which will open a new jsp window..
Can this HTML be modal, like the user must close it to work with applet