Forgive me for being a newbie, but this is the code i have that occurs after the initial page is submitted,
<%
Dim Quantity(30)
Dim Item_Number(30)
Dim Item_Description(30)
Dim Charge_To_Company(30)
Dim Charge_To_GL(30)
Dim Item_Unit_Cost(30)
arrQuantity = Replace(arrQuantity,"," ,"" )
arrItem_Number = Replace(arrItem_Number, "," , "" )
arrItem_Description = Replace(arrItem_Description,"," ,"" )
arrCharge_To_Company = Replace(arrCharge_To_Company,"," ,"" )
arrCharge_To_GL = Replace(arrCharge_To_GL,"," ,"" )
arrItem_Unit_Cost = Replace(arrItem_Unit_Cost,"," ,"" )
arrQuantity = Split( Request("Quantity"

, "," )
arrItem_Number = Split( Request("Item_Number"

, "," )
arrItem_Description = Split( Request("Item_Description"

, "," )
arrCharge_To_Company = Split( Request("Charge_To_Company"

, "," )
arrCharge_To_GL = Split( Request("Charge_To_GL"

, "," )
arrItem_Unit_Cost = Split( Request("Item_Unit_Cost"

, "," )
%>
<HTML>
<HEAD><TITLE>Confirmation</TITLE></HEAD>
<BODY>
<% Response.Write arrQuantity(0) %>,
<% Response.Write arrItem_Number(0) %>,
<% Response.Write arrItem_Description(0) %>,
<% Response.Write arrCharge_To_Company(0) %>,
<% Response.Write arrCharge_To_GL(0) %>,
<% Response.Write arrItem_Unit_Cost(0) %>,
<BR>
<% Response.Write arrQuantity(1) %>,
<% Response.Write arrItem_Number(1) %>,
<% Response.Write arrItem_Description(1) %>,
<% Response.Write arrCharge_To_Company(1) %>,
<% Response.Write arrCharge_To_GL(1) %>,
<% Response.Write arrItem_Unit_Cost(1) %>,
</BODY>
</HTML>
I know that the replace statement is wrong since i am doing a replace on a array rather than a string. I tried doing a for loop to no avail. Any help is greatly appriciated, Thanks