Here I am explaning how to set session timeout in web.config.
if we want to set our custom timeout in our applications we can set it
in web.config. we can set timeout session in
<configuration>à under <system.web>
<configuration>
<system.web>
<sessionState mode="InProc" timeout="20">
</sessionState>
</system.web>
</configuration>
Post your comments / questions
Recent Article
- Python read file line count
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
Related Article