Saving Viewstate on Server
问题 What is the best way to save view state on server? Is it a good idea to use a WCF service to save the view state on the server? 回答1: Are we talking about ASP.NET view state? Why do you need WCF to store view state on the server? ASP.NET provides its own methods to store view state on the server: You can override SavePageStateToPersistenceMedium and LoadPageStateFromPersistenceMedium on your Page . You can override PageStatePersister property of your Page (or in custom PageAdapter ). This