Hello everyone,
I have tried to implement this tutorial:
It's not working for me. This is my code to loop through the resID (to test the tutorial).
<%
Function CleanInput(strReqName)
CleanInput = Replace(Request.Form(strReqName),"'","''")
End Function
Dim id, resID
resID = Split(Request.Form("resID"),",")
For each id in resEncanID
response.write id & ", " & CleanInput("price_" & id) & "<br>"
Next
%>
The result is :
1547, 1
1548,
1549,
1550,
It doesn't give me the price_1548, price_1549, etc. On the first page, the text fields have the appropriate names (price_1547, price_1548, etc)
Can someone help me...
w11z
I have tried to implement this tutorial:
It's not working for me. This is my code to loop through the resID (to test the tutorial).
<%
Function CleanInput(strReqName)
CleanInput = Replace(Request.Form(strReqName),"'","''")
End Function
Dim id, resID
resID = Split(Request.Form("resID"),",")
For each id in resEncanID
response.write id & ", " & CleanInput("price_" & id) & "<br>"
Next
%>
The result is :
1547, 1
1548,
1549,
1550,
It doesn't give me the price_1548, price_1549, etc. On the first page, the text fields have the appropriate names (price_1547, price_1548, etc)
Can someone help me...
w11z