Hi all,
I am very very new to ASP. I am trying to turn a page I have in coldfusion into ASP using VBscript. There are some functions in coldfusion that I can't find comparable functions in vbscript. Any help would be greatly appreciated.
The functions I am trying to convert is the
valueList(passes a field from a recordset) and
listContains(variable1, variable2)
Here is the coldfusion as it appears on my pages
Code:
<cfquery name="getGlossary" datasource="#DSN#">
SELECT *
FROM glossary
ORDER BY first_character, name
</cfquery>
<cfset alphaList = "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">
<cfset glossaryAlphaList = valueList(getGlossary.first_character)>
<cfoutput>
<cfloop list="#alphaList#" index="alpha">
<td width=&qu
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --