Click to See Complete Forum and Search --> : Java Servlet


February 29th, 2000, 11:34 PM
i am a software developer. I want to open a new Internet Explorer window in the client's window from server using servlet. can any body help.

Jan Meeuwesen
March 1st, 2000, 01:55 AM
Hi,

I guess you want to open a link in another window. You can then use the link property target="_blank", and the link will be opened in a new window.

Greets,
Jan Meeuwesen
( If this answer is of any value to you, rate it! (bottom right in your browser under this text) )

kib63613
March 1st, 2000, 02:57 AM
Here is the mehtod that you can try . If it fails, I think it is........:(
In you servlet, you may invoke your applet which is going to be executing in the IE.
Applet applet = (Applet) Class.forName("appletclassname").newInstance();
applet.getAppletContext().showDocument(url);
where url is the instance of URL class
good luck
Alfred Wu