i'm using session variables to store data input in forms spanning several pages.
but i noticed that once a value is assigned to a session variable, it maintains that value throughout the session - even if the user goes back and edits the form input, the previous variable value is maintained.
is there a way to alter values of session variables in this context or this a necessary restriction of such variables?
is it advisable to use hidden fields instead? or any smarter solutions out there?
help!!