You can't do this. You cant do, for example:
for i=0 to 5
Dim DynamicVariablei
next
In this case, this will create a variable named DynamicVariablei and not DynamicVariable0, DynamicVariable1, etc.
Variable values are not evaluated in a varible declartion, and this makes sense.
Why can't you use an array?
for i=0 to ubound(myArray)
Response.redirect "www.mydoamin.com/page.asp?var1=" + myArray(i)
next
That would work just fine.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========