/t5/coldfusion-discussions/view-state/td-p/464689Oct 12, 2007
Oct 12, 2007
Copy link to clipboard
Copied
In Asp.Net the is the capability to maintain a sense of state
with (ViewState).
This would allow the file to do postback w/o having to pass
form or url variables to maitain the data.
What does ColdFusion have that I could use that would be
compariable?
/t5/coldfusion-discussions/view-state/m-p/464690#M42255Oct 12, 2007
Oct 12, 2007
Copy link to clipboard
Copied
viewstate in asp.net is a hidden form field that is appended
to the page, encrypted and signed so as to verify it's not been
messed with. It's pretty easy to write something similar in CF that
emulates the same functionality. Take the posted form structure,
wddx it (perhaps) and then pass it about as a single field.