Can you use dynamic data in a request form

From: bateman (bateman_ap_at_nospam.hotmail.com)
Date: 02/14/04


Date: Sat, 14 Feb 2004 20:28:17 -0000

Hi, I am am trying to write some code to perform a INSERT in SQL table using
a loop. What would be great is a way of dynamically entering in data in a
requaest.form
ie the final code should look something like:

if Request.Form("type1") = "1" then

where the 1 in "type1" is dynamic so the code would look something like

Request.Form("type" & Rs.("fld_type_id") & ") = "1" then

But not sure how to form this or whether it would work, anyone have any
idea?