sql = "SELECT * FROM tblcsvdump"
set rs = connection.execute(sql)
records = rs.Fields.Count
dim heading(100)
dim pulled(100)
dim i
dim count
dim VAL
dim VEL
i=0
count = 0
for i=0 to records
heading(count) = rs.Fields(count)
response.write(heading(count))
header = heading(count)
'**** THIS ROW HAS ERROR
pulled(count) = Request.Form(header)
count=count+1
next
The error i receive is....
The function expects a string as input.
What am i doing wrong guys?