When we use OUT PROC it may be state server or Sql Server ,we must serialize all functions except initial datatypes
INPROC :
Otherwise When i restart the application we lost all sessions using this Mode .
IT Store Values on Webserver .
OUT PROc:
INPROC :
Otherwise When i restart the application we lost all sessions using this Mode .
An AppDomain contains InProc session state (the default session state mode). So if an AppDomain is killed/recycled, all of your session state information will be lost. (if you are using the default InProc session state)
IT Store Values on Webserver .
OUT PROc:
Comments
Post a Comment