Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying a web page from Java

Status
Not open for further replies.

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?
 
Something like this oughta work:<br>
if(something is true){<br>
URL url = new URL("some URL");<br>
getAppletContext().showDocument(url);<br>
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top