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.
Printable View
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.
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) )
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