Simon Toon Personal pages/links Java section

Favourite Java Links
JavaTM Platform 1.1 API Specification
java.awt.Button
java.awt.Frame
java.awt.Label
java.awt.Panel
java.lang.String
java.awt.TextField

Check out htmlgoodies.earthweb.com/beyond/fullscreen.html. (HTML Goodies is a fantastic resource.)

Here is an example of an HTML page with redirection to another page...
<html> 
<head> 
<title>test</title> 
</head> 

<SCRIPT>
location = "http://developer.netscape.com:80/docs/manuals/communicator/jsguide4/contents.htm"
</SCRIPT>

<body> 
You will be redirected 
</body> 
</html>

I learnt this from Chapter 3 of http://developer.netscape.com:80/docs/manuals/communicator/jsguide4/contents.htm

Here's another way, but this one has a nice 10-second delay.
<html> 

<head> 
<title>test</title> 
<meta http-equiv="Refresh" content="10; URL=http://developer.netscape.com:80/docs/manuals/communicator/jsguide4/contents.htm">
</head> 

<body> 
Your browser will be automatically redirected in 10 seconds 
</body> 

</html> 

For a link which opens a new browser window, add target="new" to the <a href=> clause.
http://www.simon.toon.macunlimited.net
<a href ="http://www.simon.toon.macunlimited.net" target="new">http://www.simon.toon.macunlimited.net</a>

Last updated: 5/August/2003