admin_pmmaint_index.asp

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/67504?pagenum=1
05 November 2025, 03:35

Topic


Carefree
admin_pmmaint_index.asp
22 July 2008, 15:51


There are a pair of routines (lines 225-251 and lines 419-445) in this file to create links for all the letters in the alphabet. I wrote a 4 line routine that does the same thing. If anyone has a need for creating alphabetic links, this may help:

Code:

	For ltr=65 to 90
strltr = chrW(ltr)
Response.Write " <a href=""admin_pmmaint_index.asp?mode=search&M_NAME=" & strltr & """><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>" & strltr & "</font></a>" & vbNewLine
next
<

 

Replies ...


Etymon
22 July 2008, 17:05


If I remember correctly most of the MODs that do the alphabet don't do the numbers as well. Might you have a routine for numbers too? smile<
Carefree
22 July 2008, 19:42


Sure, just change the numbers in the first line to:
for ltr=48 to 57<
Etymon
22 July 2008, 20:17


wink<
© 2000-2021 Snitz™ Communications