0

someone made a site in .net which am taking over.

when someone is logged in, it logs you out automatically after a short while.

in the web.config theres this code which am assuming controls the time:

     <httpRuntime
       executionTimeout="12000"
       maxRequestLength="307200"
       useFullyQualifiedRedirectUrl="false"
       minFreeThreads="8"
       minLocalRequestFreeThreads="4"
       appRequestQueueLimit="100"
       enableVersionHeader="true"
       requestValidationMode="2.0"
    />

now what does the "12000" number mean

can i change the length of time in this code

and whats the diffrence between executionTimeout and maxRequestLength

thanks

al123
  • 561
  • 9
  • 25

2 Answers2

0

I don't think that is the property you are looking for what is more likely is that the session is timing out

Session timeout in ASP.NET

Should help you

Community
  • 1
  • 1
theedam
  • 629
  • 3
  • 10
  • its already timeout. but i need to make the timeout longer! i think its it might be executionTimeout, but not sure – al123 Apr 10 '14 at 11:27
0

If you're using Authentication Forms, look for system.web - authentication in web.config. There, you have a Timeout parameter.

<authentication mode="Forms">
    <forms loginUrl="login.aspx" name=".ASPNETAUTH" protection="None" path="/" timeout="60"/>
</authentication>
RLB
  • 44
  • 9
  • Nothing about Authentication. Configures ASP.NET HTTP run-time settings that determine how to process a request for an ASP.NET application. – RLB Apr 10 '14 at 12:38
  • @al123 Have you solved? If so, could you mark an answer? – RLB Apr 29 '14 at 18:30