Or if you want to make your own page
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<P>Character Table</P>
<table>
<tr>
<th>Code #</th>
<th>Output</th>
</tr>
<%
Dim code
For code =32 to 254%>
<tr>
<td><%=code%></td>
<td><%=chr(code)%></td>
</tr>
<%Next%>
</table>
</BODY>
</HTML>
======
Doug G
======