ok ... here's my problem. I can't seem how to create a list of strings in asp and then loop through them. In ColdFusion it's pretty simple you define your list:
<cfset teststring="1,2,3,4,5">
and then you can loop through it via this:
<cfloop index="currentnum" list="teststring" delimiter=",">
my current number is #currennum#
</cfloop>
HOW DO I DO THIS IN ASP ... ARG THIS IS KILLING ME. THANKS GUYS!
<cfset teststring="1,2,3,4,5">
and then you can loop through it via this:
<cfloop index="currentnum" list="teststring" delimiter=",">
my current number is #currennum#
</cfloop>
HOW DO I DO THIS IN ASP ... ARG THIS IS KILLING ME. THANKS GUYS!