I use InProc sessionState mode. I can also set the session timeout in
web.config. So here is my question:
If IIS setting has a session timeout value of 20 minutes, but my
web.config setting has a session timeout of 30 minutes, will the
session time out in 20 minutes or in 30 minutes?
Thank you.
Ha, thank you very much. No wonder, from my series of tests, my
timeout setting in web.config always outlives the IIS session setting.
I searched for MSDN documentation about what you said, but could not
find it.
I looked into the asp.net configuration setting console, and notice
that we can also set the session timeout there. So, if I have session
timeout value of 20 minutes in this asp.net configuration setting
console, but in my web.config, I set this value to be 30 minutes.
Which one will take effect?
30 minutes.
ASP.NET configuration settings override IIS configuration settings.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<antony...@yahoo.com> wrote in message news:a1f90110-79cb-460b...@s50g2000hsb.googlegroups.com...
The ASP.NET configuration tool will update your web.config to whatever value you set.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<antony...@yahoo.com> wrote in message news:8467759d-205e-4f61...@f36g2000hsa.googlegroups.com...
Muchas gracious, senor. But I am confused by two responses of
yours. :-)
Your first response says:
ASP.NET configuration settings override IIS configuration settings.
You meant web.config setting will override whatever setting we make
through IIS config console, right?
And here is your second response, shown below:
The ASP.NET configuration tool will update your web.config to whatever
value you set.
Do you mean that my web.config's session timeout value will be changed
by the IIS config tool to whatever value we set through the IIS config
tool?
Please clarify.
Not all settings, but settings which only apply to ASP.NET.
Other IIS settings ( like for PHP apps or HTML pages ),
retain the IIS default configuration, unless mapped to the ASP.NET ISAPI dll.
re:
!> Do you mean that my web.config's session timeout value will be changed
!> by the IIS config tool to whatever value we set through the IIS config tool?
No. I said just the opposite.
For ASP.NET apps, settings which apply only to ASP.NET
will override IIS default configuration settings.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<antony...@yahoo.com> wrote in message news:c0df7f2c-c6e4-42a0...@b1g2000hsg.googlegroups.com...
OK, good know. So, with regard to session timeout, web.config will
override the session timeout setting of the IIS config tool, right?
Only for ASP.NET apps... :-)
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<antony...@yahoo.com> wrote in message news:2538f8ff-6f6e-4ebb...@x41g2000hsb.googlegroups.com...