|
-
March 1st, 2000, 12:34 AM
#1
Java Servlet
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.
-
March 1st, 2000, 02:55 AM
#2
Re: Java Servlet
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) )
-
March 1st, 2000, 03:57 AM
#3
Re: Java Servlet
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|