In order to help speed up my page load times I am removing SessionState from as many pages as possible. I have a lot of pages viewed that don’t require any session tracking.
I know that storing something in the session e.g.
Session.Add("name", value);
uses the session state, but does anything else or is that it?
I’m using plain old ASP.NET not MVC.
See the following link to improve performance and understand session state
http://msdn.microsoft.com/en-us/magazine/cc163730.aspx