ASP.NET SessionIn ASP.NET session is a state that is used to store and retrieve values of a user. It helps to identify requests from the same browser during a time period (session). It is used to store value for the particular time session. By default, ASP.NET session state is enabled for all ASP.NET applications. Each created session is stored in SessionStateItemCollection object. We can get current session value by using Session property of Page object. Let's see an example, how to create an access session in asp.net application. ASP.NET Session ExampleIn the following example, we are creating a session and storing user email. This example contains the following files. // Default.aspxCode// Default.aspx.csOutput: This application will store user email to the session when user login. It will show stored session value, user email. Next TopicASP.NET DropDownList |