Anyone could tell me the way to make a array and then get their values I have understood that I have to do something like this:
<%
'Creating and initializing the array(unidimentional)
Dim MyArray()
Redim MyArray(request.form.count)
for each item in request.form
MyArray = request.form(item)
'keep the values of the previous form
next
'Geting the values from array(fifth elemment in a array) and using the values in a select
select * from x where y = session(MyArray(5))
%>
'Make it like array session type
session("array1" = MyArray
Thanks
[sig][/sig]