ASP.NET Session keeps on dying

ShabFoowlylob

New Member
I am facing a strange problem with ASP.NET sessions, It keeps on dying every few minutes. I have made changes in web.config still the problem persists.web.config :\[code\]<system.web> <compilation debug="true" targetFramework="4.0"/> <customErrors mode="Off"></customErrors> <sessionState mode="InProc" timeout="900"></sessionState> <webServices> <protocols> <add name="HttpPost"/> <add name="HttpGet"/> <add name="HttpSoap"/> </protocols> </webServices></system.web>\[/code\]I have changed the setting in IIS also. What am i doing wrong? How do I make session endless?
 
Back
Top