So if I want to pass a lot of values from page 1 to page 2. no user input here.
I could set up these values in session in page 1 and then click a link to get to page 2, in page 2 i will first get these session values and then unset these session variables.
I also can just save these values in hidden fields of a form, and then click a link (this link will call for the theform.submit() function and these hidden fields values will be submit to the taget page, page 2.
these values are non sensitive values, so no security concern here.
what limitations, advantages or disadvantages each approach have?
or hidden object and session could be used for the same purposes, no big difference? pass values (no user input) from page 1 to page 2?
Thanks!