SmartestVEGA
SmartestVEGA

Reputation: 8889

Increase the session timeout of my web form?

I need to increase session timeout of my web use form ...

could anyone please help ?

Upvotes: 1

Views: 4495

Answers (1)

Mehrdad Afshari
Mehrdad Afshari

Reputation: 421978

In Web.config:

<system.web>
  ...
  <sessionState timeout="timeout in minutes"
       ...
  />
  ...
</system.web>

Upvotes: 6

Related Questions