1

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

could anyone please help ?

SmartestVEGA
  • 7,601
  • 21
  • 79
  • 127

1 Answers1

6

In Web.config:

<system.web>
  ...
  <sessionState timeout="timeout in minutes"
       ...
  />
  ...
</system.web>
mmx
  • 402,675
  • 87
  • 836
  • 780
  • But i couldnt see the session tag in web.config. But my webpage is timing out after some time. – SmartestVEGA Dec 02 '09 at 09:49
  • SmartestVEGA: Add a `` to `Web.config` if there's not one already. Note that "session timeout" is different from script timeout. If a single Web page is taking to long to display, it's not a session timeout. It's a script timeout. – mmx Dec 02 '09 at 09:57