Click here to Skip to main content
15,867,488 members
Articles / Web Development / ASP.NET

Cookies in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.84/5 (88 votes)
25 Aug 2011CPOL3 min read 481.7K   11K   114   50
In this quick post, you will learn all about cookies used in web based applications.

Introduction

Cookies are also known by many names, HTTP Cookie, Web Cookie, Browser Cookie, Session Cookie, etc. Cookies are one of several ways to store data about web site visitors during the time when web server and browser are not connected. Common use of cookies is to remember users between visits. Practically, cookie is a small text file sent by web server and saved by web browser on client machine.

Use of Cookies?

Cookies may be used for authentication, identification of a user session, user's preferences, shopping cart contents, or anything else that can be accomplished through storing text data. Cookies can also be used for travelling of data from one page to another.

Is Cookies Secured?

Well, this question has no specific answers in YES or NO. Cookies could be stolen by hackers to gain access to a victim's web account. Even cookies are not software and they cannot be programmed like normal executable applications. Cookies cannot carry viruses and cannot install malware on the host computer. However, they can be used by spyware to track user's browsing activities.

Using Cookies

Creating/Writing Cookies

There are many ways to create cookies, I am going to outline some of them below:

Way 1 (by using HttpCookies class)

C#
//First Way
HttpCookie StudentCookies = new HttpCookie("StudentCookies");
StudentCookies.Value = TextBox1.Text;
StudentCookies.Expires = DateTime.Now.AddHours(1);
Response.Cookies.Add(StudentCookies);

Way 2 (by using Response directly)

C#
//Second Way
Response.Cookies["StudentCookies"].Value = TextBox1.Text;
Response.Cookies["StudentCookies"].Expires = DateTime.Now.AddDays(1);

Way 3 (multiple values in same cookie)

C#
//Writing Multiple values in single cookie
Response.Cookies["StudentCookies"]["RollNumber"] = TextBox1.Text;
Response.Cookies["StudentCookies"]["FirstName"] = "Abhimanyu";
Response.Cookies["StudentCookies"]["MiddleName"] = "Kumar";
Response.Cookies["StudentCookies"]["LastName"] = "Vatsa";
Response.Cookies["StudentCookies"]["TotalMarks"] = "499";
Response.Cookies["StudentCookies"].Expires = DateTime.Now.AddDays(1); 

Reading/Getting Cookies

In the above code, I have used many ways to write or create cookies so I need to write here using all the above ways separately.

For Way 1

C#
string roll = Request.Cookies["StudentCookies"].Value; //For First Way

For Way 2

C#
string roll = Request.Cookies["StudentCookies"].Value;  //For Second Way

For Way 3

C#
//For Multiple values in single cookie
string roll;
roll = Request.Cookies["StudentCookies"]["RollNumber"];
roll = roll + " " + Request.Cookies["StudentCookies"]["FirstName"];
roll = roll + " " + Request.Cookies["StudentCookies"]["MiddleName"];
roll = roll + " " + Request.Cookies["StudentCookies"]["LastName"];
roll = roll + " " + Request.Cookies["StudentCookies"]["TotalMarks"];
Label1.Text = roll; 

Deleting Cookies

In the above code, I have used many ways to create or read cookies. Now look at the code given below which will delete cookies.

C#
if (Request.Cookies["StudentCookies"] != null)
{
    Response.Cookies["StudentCookies"].Expires = DateTime.Now.AddDays(-1);
    Response.Redirect("Result.aspx");  //to refresh the page
}

Understanding HttpCookie Class It contains a collection of all cookie values.

We do not need to use any extra namespaces for HttpCookies class (we already have used this in Way 1 above), because this class is derived from System.Web namespaces. HttpCookies class lets us work with cookies without using Response and Request objects (we have already used this in Way 2 and Way 3 above).

image002.jpg

HttpCookie class has a list of some properties, let us outline them.

  • Domain: It contains the domain of the cookie.
  • Expires: It contains the expiration time of the cookie.
  • HasKeys: It contains True if the cookie has subkeys.
  • Name: It contains the name of the cookie.
  • Path: It contains the virtual path to submit with the cookie.
  • Secure: It contains True if the cookie is to be passed in a secure connection only.
  • Value: It contains the value of the cookie.
  • Values:

Limitations of Cookies

There are following limitations for cookies:

  1. Size of cookies is limited to 4096 bytes.
  2. Total 20 cookies can be used on a single website; if you exceed this browser will delete older cookies.
  3. End user can stop accepting cookies by browsers, so it is recommended to check the users’ state and prompt the user to enable cookies.

Sometimes, the end user disables the cookies on browser and sometimes browser has no such feature to accept cookies. In such cases, you need to check the users’ browser at the home page of website and display the appropriate message or redirect on appropriate page having such message to enable it first. The following code will check whether the users’ browser supports cookies or not. It will also detect if it is disabled too.

C#
protected void Page_Load(object sender, EventArgs e)
{
    if (Request.Browser.Cookies)
    {
        //supports the cookies
    }
    else
    {
        //not supports the cookies
        //redirect user on specific page
        //for this or show messages
    }
}

It is always recommended not to store sensitive information in cookies.

Download the sample code attached with this post to check it yourself.

So, that is all about the ASP.NET cookies. Please post your feedback.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder ITORIAN.COM
India India
Abhimanyu Kumar Vatsa (Abhimanyu Kumar Singh) is a Microsoft MVP and Mindcracker (C# Corner) MVP (2010, 2011) and having experience in building web scale applications using Microsoft Technologies including ASP.NET, MVC, C#/VB, jQuery, JavaScript, Silverlight, SQL Server and many more web stuffs. He is also handy in non-Microsoft Technologies like PHP, ColdFusion etc but he’s specility is always Microsoft. He love to work with Internet scale projects using Microsoft stuffs that has potential to change the every day use of technology. He love to blog and started it around June 2009 and because such blogging Microsoft awarded him MVP.

Comments and Discussions

 
Questionhow does the cookie message get shown on the initial visit to a site? Pin
Robert Everett15-Feb-19 22:51
Robert Everett15-Feb-19 22:51 
PraiseBest and simple example Pin
RAJU-110520904-Dec-15 1:48
RAJU-110520904-Dec-15 1:48 
QuestionMy Vote 5 Pin
Dharmesh .S. Patil12-Jul-15 18:57
professionalDharmesh .S. Patil12-Jul-15 18:57 
Question(Y) Pin
Member 1170275619-May-15 4:24
Member 1170275619-May-15 4:24 
i think its a complete explaination..
Questioncomment Pin
Member 22338445-Feb-15 6:19
Member 22338445-Feb-15 6:19 
GeneralVery Nice Pin
vickycode418-Dec-14 0:51
vickycode418-Dec-14 0:51 
QuestionMy vote of 5 Pin
Asım Ölmez16-Oct-14 21:40
Asım Ölmez16-Oct-14 21:40 
Generalgood work Pin
Raza Syed10-Sep-14 1:43
Raza Syed10-Sep-14 1:43 
GeneralMessage Closed Pin
14-Jun-14 6:20
Binu198514-Jun-14 6:20 
QuestionHow to use cookies for storing multiple cart product and retrive them in shopping website Pin
Gourav_Garg25-Apr-14 12:27
professionalGourav_Garg25-Apr-14 12:27 
GeneralMy vote of 3 Pin
abhishek123456725-Feb-14 7:45
abhishek123456725-Feb-14 7:45 
Question5 Pin
Ronak Dey1-Jan-14 19:05
Ronak Dey1-Jan-14 19:05 
GeneralSimple and Clear Pin
VICK23-Oct-13 18:35
professional VICK23-Oct-13 18:35 
GeneralMy vote of 5 Pin
Britteandy26-Sep-13 1:58
Britteandy26-Sep-13 1:58 
GeneralMy vote of 5 Pin
Member 770584528-Jul-13 19:53
Member 770584528-Jul-13 19:53 
GeneralMy vote of 5 Pin
Tien Xuan Le26-May-13 19:16
professionalTien Xuan Le26-May-13 19:16 
GeneralMy vote of 5 Pin
Аslam Iqbal19-May-13 0:13
professionalАslam Iqbal19-May-13 0:13 
GeneralMy vote of 5 Pin
mdogggg25-Apr-13 1:08
mdogggg25-Apr-13 1:08 
GeneralThanx bro.Really very nice and simple explanation about cookies.It helps me a lot. :) Pin
Tushar Kanti Das8-Apr-13 23:38
Tushar Kanti Das8-Apr-13 23:38 
GeneralMy vote of 5 Pin
Alireza_13624-Apr-13 16:18
Alireza_13624-Apr-13 16:18 
GeneralMy vote of 5 Pin
Azziet12-Mar-13 20:06
Azziet12-Mar-13 20:06 
GeneralMy vote of 5 Pin
csharpbd11-Mar-13 23:57
professionalcsharpbd11-Mar-13 23:57 
Questionmy vote 5 Pin
Nitin S11-Mar-13 23:51
professionalNitin S11-Mar-13 23:51 
SuggestionNice but need more information on cookies... Pin
Rajneesh Rai28-Feb-13 19:13
Rajneesh Rai28-Feb-13 19:13 
SuggestionRe: Nice but need more information on cookies... Pin
Vasudevan Deepak Kumar4-Apr-13 6:48
Vasudevan Deepak Kumar4-Apr-13 6:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.