Thanks to your prompt reaction,
To be more specific, i have created the form page with simple html and added "form1#CurrentRow#" to the name
<input type="Text" name="form1#CurrentRow#" size="8" maxlength="20">
and the action page looks the following. But it doesnt work.
<CFQUERY NAME="GetWoord" datasource="mydsn" dbtype="ODBC">
SELECT *
FROM table
</CFQUERY>
<!--- Declare variable rec to sort and get the last record count --->
<cfset rec = Listlast(listsort(valuelist(GetWoord.nr), "numeric", "asc"

)>
<!--- Run loop: one for every row outputed earlier --->
<cfloop index="i" from="#rec#" to="#form.RecordCount#">
<cfset locfild1 = "form.fild1" & i>
<cfset locfild2 = "form.fild2" & i>
<cfset locfild3 = "form.fild3" & i>
<cfset locfild4 = "form.fild4" & i>
..
<!--- All dynamic form variables are evaluated here . --->
<cfquery name="getwoord#i#" datasource="mydsn">
INSERT INTO table
(fild1, fild2, fild3, fild4,... )
VALUES
('#Evaluate(locfild1)#', '#Evaluate(locfild2)#', '#Evaluate(locfild3)#',...)
</cfquery>
<!--- Loop to next row --->
</cfloop>
<!--- use CFLOCATION to return to beheerform.cfm --->
<CFLOCATION URL="mainform.cfm" addtoken="No">