Feb 22, 1999 #1 JavaMan MIS Feb 10, 1999 2 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 Mar 4, 1999 3 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> }