Feb 22, 1999 #1 JavaMan MIS Joined Feb 10, 1999 Messages 2 Location US I need to know how I can cause a web page (from another web site) to appear if certain conditions exists. What is the Java API for doing this?
I need to know how I can cause a web page (from another web site) to appear if certain conditions exists. What is the Java API for doing this?
Mar 4, 1999 #2 JNich Programmer Joined Mar 4, 1999 Messages 3 Location US Something like this oughta work:<br> if(something is true){<br> URL url = new URL("some URL");<br> getAppletContext().showDocument(url);<br> } Upvote 0 Downvote
Something like this oughta work:<br> if(something is true){<br> URL url = new URL("some URL");<br> getAppletContext().showDocument(url);<br> }
Mar 25, 1999 Thread starter #3 JavaMan MIS Joined Feb 10, 1999 Messages 2 Location US Thanks! Upvote 0 Downvote