dexterz 0 Junior Poster in Training

Author: Dexter Zafra www.ex-designz.net

'The result will look like this:
'List A-Z: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

'Place the code at the top or bottom of your asp page.
<%
Dim i
For i = 65 To 90
Response.Write "<a href=""recipe.asp?letter=" & Chr(i) & Chr(34) & _
" class=""letter"" title="& Chr(i) & ">" & Chr(i) & "</a>&nbsp;&nbsp;"
Next
%>

Visit www.ex-designz.net to see more ASP code