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
What is asynchronous call?
What are different methods of session maintenance in asp.net?
How to use push notification?
Explain the advantages of passport authentication.
What is an il?
What is the difference between custom controls and user controls?
How long do session variables last?
What is a query string in a url?
What are the Types of authentications in IIS
What is server infrastructure & server components?
What is considered a service provider?
Explain why datareader is useful?
What are the events that happen when a client requests an asp.net page from iis server?
Explain what are webservices?
How can we inherit a static variable?