Difference between state management and session management?

asp.net, c#

Solution

InProc, State Server and SQLServer mode

This just determines where your session state is stored.

Resources

- ASP.NET Session State Overview

- ASP.NET State Management Overview

- Session-State Modes

Problem

The following are the commonly used state management techniques. ``` QueryString Cookies Cache ViewState Session state(eg: Session[“name”]) Application state Static variables Profiles ``` Are session state (e.g. `Session [“name”]`) and session management the same? InProc, State Server and SQLServer mode: are these related to session state or session management? State management and session management in ASP.NET are the same or not?

Original source