Hi ehya,
Could try these possibilites?
1)
Code:
Response.Write "<INPUT id='" & Item & "' name='" & Item & "' type='hidden' value='" & Request(Item) & "'>"
2) I suspect
Request(Item) could be the culprit.
Could you try this to see if everything comes good?
Code:
<%
For Each Item in Request.Form
If Item <> "nextbtn" then
Response.Write Item & "=" & Request(Item) & "<br>"
''''''' OR
Response.Write Item & "=" & Request.FORM(Item)& "<br>"
End If
Next
%>
3) Actually
REQUEST.FORM(ANYTHING) should not work. As it should be
REQUEST.FORM("SOMETHING")
As
Item is a variable, is there a way you can embed that with DOUBLE QUOTES withing REQUEST.FORM(...)?
Hope that helps.
Cheers!
_________________________
-Vijay G

Strive for Perfection
