Can I set Session timeout for a specified Session variable differently than other Session Variables
- by Eppz
I'd like to set the timeout on a specific Session Variable in a .Net web application, but leave other Session variables alone. Is this possible?
Example:
I have 5 Session Variables
Session(var1)
Session(var2)
Session(var3)
Session(var4)
Session(var5)
I want to set it so that Session(var1) through Session(var4) have a timeout of 8 hours (480 minutes), but Session(var5) has a timeout of 20 minutes. Can it be done?