javascript - Save data to ViewState -


i can tried save data viewstate, error: microsoft jscript runtime error: sys.webforms.pagerequestmanagerservererrorexception: error serializing value 'hermessaas.bussinesprocess.bussinesservices.candidateservice' of type 'hermessaas.bussinesprocess.bussinesservices.candidateservice.' code:

private iactionservice actionservice     {                 {             return viewstate["actionservice"] iactionservice;         }         set         {             viewstate["actionservice"] = value;         }     }  private void initializefield(iactionservice service)         {             actionservice = service;         } 

how can store value viewstate?

s hermessaas.bussinesprocess.bussinesservices.candidateservice decorated serializable attribute?

eg:

[serializable] public class candidateservice {  } 

if not simple class recommend storing in session rather viewstate take longer page download , render


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -