blob: 373823342f61366ed364bc4eff55cb89af94db59 [file] [log] [blame]
<html>
<%@ page language="jscript" %>
<head>
<title>Temperature Table</title>
</head>
<body>
<h1>Temperature Table <blink>sponsored by Microsoft JScript</blink></h1>
<p>American tourists visiting Canada can use this handy temperature
table which converts from Fahrenheit to Celsius:
<br><br>
<table BORDER COLS=2 WIDTH="20%" >
<tr BGCOLOR="#FFFF00">
<th>Fahrenheit</th>
<th>Celsius</th>
</tr>
<%
for(i= 0; i <101; i+=10)
{
out.println('<tr ALIGN=RIGHT BGCOLOR="#CCCCCC">');
out.println("<td>" + i + "</td>");
out.println("<td>" + (i - 32)*5/9 + "</td>");
out.println("</tr>");
}
%>
</table>
<p><i> <%= CreateBean("java.util.Date").toString() %> </i></p>
</body>
</html>