asp.net - Preserve Session Variables in Web Application After Build -


every time build web application, session variables lost before build. there anyway preserve session variables during build?

session variables default held in memory web server. when build, resetting application, , hence losing session (and static, cache, etc) values.

if wish, can configure asp.net use different session state provider changing session state mode. note "inproc" default, holds them in memory. can use stateserver runs in different process , can on different machine, or sqlserver - or write own.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -