1

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

could anyone please help ?

SmartestVEGA
  • 8,415
  • 26
  • 86
  • 139

1 Answers1

6

In Web.config:

<system.web>
  ...
  <sessionState timeout="timeout in minutes"
       ...
  />
  ...
</system.web>
Mehrdad Afshari
  • 414,610
  • 91
  • 852
  • 789
  • 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. – Mehrdad Afshari Dec 02 '09 at 09:57