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
Explain the difference between an exe and a dll?
What is the use of worker process in asp.net?
Explain automatic memory management in .net.
How many types of Cookies are available in ASP.NET?
Difference between response.redirect and server.transfer?
hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.
Which data type does the rangevalidator control support?
What is query string with example?
What is work flow gen? how can it will work with .Net?
Explain the asp.net mvc request life cycle? : asp.net mvc
Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.
Define dll hell?
How can you dynamically add user controls to a page?
Which is faster viewbag or viewdata?
What are session and cookies?