Just curious what you guys thnk is the easiest and best way to pass variables from one page to another, both client side and server side and then get back to the parent page and make sure it's still the way it was.
So say I have a page with a check box and a button.
I press button, goes to new page and page says is check is checked or not and there is a close button. I click close, goes back to the first page and the checkbox is back at whatever state it was originally in.
Does that make sense?
Thats a rather simple interpretation but my thought was some kind of object that stored things like the checkbox's state and plop the object into a session (or something similar) then I could use web service to access the object in the session and get/set values either through javascript or server side code.
First page can then just reaccess the object to get the state info back.
or can you just store the view state and reload it somehow.? hmm. Thoughts?
So say I have a page with a check box and a button.
I press button, goes to new page and page says is check is checked or not and there is a close button. I click close, goes back to the first page and the checkbox is back at whatever state it was originally in.
Does that make sense?
Thats a rather simple interpretation but my thought was some kind of object that stored things like the checkbox's state and plop the object into a session (or something similar) then I could use web service to access the object in the session and get/set values either through javascript or server side code.
First page can then just reaccess the object to get the state info back.
or can you just store the view state and reload it somehow.? hmm. Thoughts?