Top "Session-state" questions

Session-state allows the retrieval of values for a given user as that user navigates through a website.

"HttpContext.Current.Session" vs Global.asax "this.Session"

Recently, while working on some code for an ASP.NET project at work. We needed a tracking util to take …

asp.net session session-state global-asax
Which one is better, InProc or SQL Server, for Session State mode in asp.net?

I am developing an ASP.NET website. I want to know which one is better in session state mode: InProc …

asp.net session-state session-timeout cookieless inproc
ASP.NET: How to access Session from handler?

i'm trying to store some values in the Session from a Handler page, before i do a redirect to a …

asp.net session session-state handler ihttphandler
How does the session timeout work in IIS 7?

In web.config, I set timeout in the sessionState to 20 minutes. According to MSDN, this timeout specifies the number of …

asp.net iis-7 timeout session-state
Generating a new ASP.NET session in the current HTTPContext

As a result of a penetration test against some of our products in the pipeline, what looked to be at …

asp.net session-state sessionid httpsession
Why Session is a disaster in ASP.NET MVC application?

Why is it being said We should not use Session variables in ASP.NET MVC applications ? I came across this …

asp.net-mvc-3 session-state
asp.net session state mode "SQLServer"

"My website is LIVE. And this problem is related to configure session timeout on LIVE server and not in localhost." …

asp.net sql-server session session-state session-timeout
Pros and Cons of using ASP.NET Session State Server (instead of InProc)?

Before I start using Session State server for the benefit of making session state more robust in my apps compared …

asp.net session stateserver session-state
When is Session_End() called in ASP.NET MVC?

I have configured my Web.Config file as follow in a ASP.NET MVC 2 project: <sessionState mode="InProc" timeout="1"/&…

asp.net-mvc web-config session-state session-timeout
Getting session in .NET ASMX web-service

I have an ASMX webservice hosted alongside my ASP.NET web app. Now, I need to get the users session …

c# asp.net web-services session-state