Created On: 11/24/2004 10:05:00 AM This function returns the ANSI character code of any letter you want to display. Following example diplays some ANSI character code of some characters. <% response.write ASC("a") response.write ASC("B") response.write ASC("@") %> |