duration

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

Is there a way to tell how long a user has stayed on a section of a web
site?
If the user has not open any new page in 5 min he's session on this section
will be over.

Let me know if i need to explain more.

Thanks
Aaron
 
Hi Aaron,
This you could do by specifying in web.config by putting the session timeout
to 5 mins.
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user id=sa;password="
cookieless="false" timeout="20"/>


Regards,
Zuzar L.
 
Back
Top