Using the ASCII codes to quickly write out a Table of Contents at the top of a webpage.

Contributed by
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
September 01, 1999
Rate this Article:
MEH MEH++


SEARCH ASP FREE
TOOLS YOU CAN USE

advertisement
Using the ASCII codes to quickly write out a Table of Contents at the top of a webpage! 3 lines of code!

Here is a quick and dirty way of writing a complete listing of the alphabet across the top of any page. You could use this for a directory listing, easily making this a way to narrow down whatever your categorizing. Just click the link and poof! This could submit to a page that uses the letter in a WHERE statement! Enjoy!!

Click here for a complete listing ASCII Codes with the numbers.

Here is the Results!

Here is a Way to write the Alphabet

ASCII #'s from 65 to 90 are the Capital Letters of the Alphabet
ABCDEFGHIJKLMNOPQRSTUVWXYZ
ASCII #'s from 97 to 122 are the small Letters of the Alphabet



abcdefghijklmnopqrstuvwxyz

Here is the code for this example!

<B>ASCII #'s from 65 to 90 are the Capital Letters of the Alphabet</b>
<table border="1" width="80%">
<tr>

</tr>
<tr>
<% 
for x= 65 to 90
response.write "<td><a href='tocwithletter.asp?someid=" & chr(x) & "'>" & chr(x) & "</td>"
Next
%>
</tr>
</table>
<br>
<br>
<br>
<br>
<b>ASCII #'s from 97 to 122 are the small Letters of the Alphabet</b>

<table border="1" width="80%">
<tr>

</tr>
<tr>
<% 
for x= 97 to 122
response.write "<td><a href='tocwithletter.asp?someid" & chr(x) & "'>" & chr(x) & "</td>"
Next
%>
</tr>
</table>

blog comments powered by Disqus
ASP CODE ARTICLES

- ASP Forms
- ASP: The Beginning
- Getting Remote Files With ASP Continued
- Inbox and Outbox Manipulation in ASP
- Relational DropDownList Using VB.NET
- Ad Tracking URL Hits
- Use ViewState to display one record per page...
- Send Email using ASP.NET formatted in HTML
- ASP File Explorer
- ASP/XML Interview questions by Srivatsan Sri...
- Pressing RETURN won't submit the form
- This shows how you get the TEXT of a combo r...
- Group Data by Adrian Forbes
- Multiple checkbox select sample
- Multiple checkbox select with all values sam...

ASP Web Hosting ASP.Net Web Hosting Windows Web Hosting
 
 
 

ASP Free Forums 
 RSS  Tutorials RSS
 RSS  Forums RSS
 RSS  All Feeds
Site Map 
Request Media Kit
Write For Us Get Paid 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Privacy Policy 
Support 


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 3 - Follow our Sitemap
Most Popular Topics
All ASP.Net Tutorials