Home

Submit

Source

Feeds
Tutorials » ASP.NET » Cookies and Sessions

ASP.NET Cookies and Sessions Tutorials

A Cookie is a small text file that the browser creates and stores on the hard drive of your machine. Cookie is just one or more pieces of information stored as text strings. A Web server sends you a cookie and the browser stores it. The browser then returns the cookie to the server the next time the page is referenced. The most common use of a cookie is to store information about the user and preferences the user makes. Sessions stored in a computer's memory for remembering preferences during a web site visit that is flushed on leaving the site. The Key difference would be cookies are stored in your hard disk whereas a session aren't stored in your hard disk. Sessions are basically like tokens, which are generated at authentication. A session is available as long as the browser is opened.

ASP.NET Cookies and Sessions
Session State
ASP.NET / Cookies and Sessions
This tutorial covers managing session state within your ASP.NET application. Programming Web applications requires you to be very mindful of how the state of your application is distributed at any moment. One of the most important types of state in a Web application is session state - the state associated with a single particular session. Because Web applications are distributed by nature, keeping track of any single client has to be done deliberately.

Site: www.brainbell.com Report - View Tutorial

ASP.NET Cookies and Sessions
Handling cookies in ASP .NET
ASP.NET / Cookies and Sessions
How to create a cookie, how to get the value stored in a cookie, set the lifetime, path and domain for a cookie, edit a cookie, delete a cookie, remove subkeys from a cookie...

Site: www.geekpedia.com Report - View Tutorial

 
Site Search

 
ASP.NET »
 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement