Session life time
-
Hi, I'm using at my application a serval sessions. For ex: Session["StartTime"] Session["EndTime"] Session["UserName"] and i'm trying to give them a time out I tried to add to the web.config:
<SessionState TimeOut="60"/></
But it dosen't work. How i can give each session a time out? Can someone please help me?
-
Hi, I'm using at my application a serval sessions. For ex: Session["StartTime"] Session["EndTime"] Session["UserName"] and i'm trying to give them a time out I tried to add to the web.config:
<SessionState TimeOut="60"/></
But it dosen't work. How i can give each session a time out? Can someone please help me?
You are somewhat confused about what Session is. Session is one single object. You do not have three Sessions, you have three Session variables. ASP.NET Session State Overview[^]
I know the language. I've read a book. - _Madmatt