The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
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