never mind I found the solution
Is it possible to save the collection of KEYS and VALUES of the "Request.Fo rm" in a session variable?
I was trying to do something like this:
...I get no error doing the previous but it's in the retrieval that I need help
I want to be able to post the collection through several pages without having to parse it all on every pages
Merci
Is it possible to save the collection of KEYS and VALUES of the "Request.Fo rm" in a session variable?
I was trying to do something like this:
Code:
session("myform") = Request.Form()
Code:
For Each Key in session("myform")
response.write Key &"<br>" '&"="
Next
Merci
Comment