For how long we can store the value in session object
-
Hi all, How long we can store the value in session object may we increase the time duration of storage ? Is there any way to increase the time of storage of value in session object ? Rameez
-
Hi all, How long we can store the value in session object may we increase the time duration of storage ? Is there any way to increase the time of storage of value in session object ? Rameez
Session.TimeOut
will say the duration session data will be kept. You can set it to a custom value if required. But before you set it to a big value, make sure you know what you are doing.Navaneeth How to use google | Ask smart questions
-
Hi all, How long we can store the value in session object may we increase the time duration of storage ? Is there any way to increase the time of storage of value in session object ? Rameez
By default in IIS, session is set to 20 minutes. But this can be changed in IIS. Alternatively you can change setting timeout at runtime using Session.Timeout. But you need to me mindful if you have to change your session timeout.
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
-
Session.TimeOut
will say the duration session data will be kept. You can set it to a custom value if required. But before you set it to a big value, make sure you know what you are doing.Navaneeth How to use google | Ask smart questions
Thanks for reply , bt how long we can store the value inside session object i mean time duration ? OR After what time Period session object lost their values automatically ? Best Regards
-
Thanks for reply , bt how long we can store the value inside session object i mean time duration ? OR After what time Period session object lost their values automatically ? Best Regards
Rameez Raja wrote:
After what time Period session object lost their values automatically
That is what
TimeOut
property says. In default settings, session will timeout after 20 minutes. :)Navaneeth How to use google | Ask smart questions
-
Hi all, How long we can store the value in session object may we increase the time duration of storage ? Is there any way to increase the time of storage of value in session object ? Rameez