hello -
i need to create a dynamic number of recordsets each time the page loads.
i'm trying to do something like this:
what is the syntax for creating the name of the recordset to include a variable value?
I've tried things like:
but nothing seems to work.
is this even possible?
thanks!
i need to create a dynamic number of recordsets each time the page loads.
i'm trying to do something like this:
Code:
for eCounter = 0 to ExtensionCounter
dim RS[eCounter]
set RS[eCounter] = "select * from table where id = eCounter"
next
I've tried things like:
Code:
dim RS & eCounter, dim "RS" & eCounter
is this even possible?
thanks!