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