2014. 1. 6. 17:23
In IIS 6 (and other versions too afaik), there is a Session Timeout setting in Properties -> Home Directory Tab -> Configuration button -> Options tab. Looks like this:
And in the ASP.NET web.config there is a SessionState setting, looks like this:
<system.web>
<sessionState timeout="120" />
<!-- etc .. -->
</system.web>
Are they, by any chance, related? Do they set the same thing, or different things?
They are not the same. The IIS session timeout is for clasic ASP pages. The web.config one is for asp.net.
'메모' 카테고리의 다른 글
말줄임표 (0) | 2014.01.20 |
---|---|
Create a Dynamic Pie Chart in SharePoint using JQuery & Google Chart API (0) | 2014.01.08 |
[MS-SQL] SET NOCOUNT ON eliminate @@ROWCOUNT values after table inserts? (0) | 2014.01.03 |
[MS-SQL] Group By 없이 Count() 쓰기 (0) | 2013.12.30 |
[자바스크립트] 페이지 리로드 (0) | 2013.12.30 |