Can we change the session timeout in ASP.NET, if yes then
how and from where?
Answer Posted / narendra soni
to change session timeout write this code in your web.config
file
<sessionState mode="InProc" timeout="60">
or you can also set this in global.asax file as
Session.Timeout = 60 ; // in Session.Start() event
it will increase your session expire time .
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Does web services support data reader like pom project?
What is the size of Get method and how much data it can store?
Do session use cookies in asp net?
Do you know about caching with the datasource controls?
How is my content secured from unauthorized access?
Can we use html in asp.net?
Can you change a Master Page dynamically at runtime?
What are different types of api?
What is session in asp.net?
Explain difference between friend and protected friend?
What are the new data controls in asp.net 2.0?
Where is http session stored?
Can I recieve both html markup for page and code in the asp.net web page's source code portion in the web browser?
In which situation can you not use a viewstate?
Explain server-side scripting and client-side scripting.