Is there any other way to store data in web application
- by carter-boater
We use ViewState to store data that is being edited by users. However, ViewState just go to large so we really want something that is faster than that.
We considered session, but it has to be manually collected when users travel among pages.
Does anybody has suggestions?
Thank you very much.