A ad Dec 22, 2005 #1 The default of timeout value of session is 20 min. How can I change the value in program?
M Mitkip Dec 22, 2005 #2 Use the timeout property of your SessionState into web.config : <configuration> ... <SessionState ... timeout="20" .../> ... </configuration>
Use the timeout property of your SessionState into web.config : <configuration> ... <SessionState ... timeout="20" .../> ... </configuration>
M Mitkip Dec 22, 2005 #5 Sure but I don't think changing this type of information programmatically is the best way ... But it depends what's his goal
Sure but I don't think changing this type of information programmatically is the best way ... But it depends what's his goal
A ad Dec 22, 2005 #7 Thanks, I want to set different values to different users when the usrs login in. How can I do that?
M Mitkip Dec 23, 2005 #8 By changing the Session.TimeOut value into your code, see Karl Seguin : "Session.TimeOut is a read/write property. Karl "
By changing the Session.TimeOut value into your code, see Karl Seguin : "Session.TimeOut is a read/write property. Karl "