---
title: "How to create a cookie in ASP.NET"  
description: "How to create a cookie in ASP.NET"  
author: "Anoop Singh"  
published: 2010-10-08  
updated: 2026-05-15  
canonical: https://www.mindstick.com/forum/26/how-to-create-a-cookie-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# How to create a cookie in ASP.NET

I am new in [development](https://www.mindstick.com/articles/65309/importance-of-ux-design-in-the-development-of-mobile-apps) please [guide](https://www.mindstick.com/articles/44463/business-to-business-vat-reclaiming-a-guide-for-your-employees) me to create [cookie](https://www.mindstick.com/blog/123/what-is-cookie-poisoning) in [ASP.NET](https://www.mindstick.com/articles/934/default-folders-available-inside-the-asp-dot-net-application-folder) ![How to create a cookie in ASP.NET](https://www.mindstick.com/app_images/htmleditor.icons/msp_rolleyes.gif)\

## Replies

### Reply by Uttam Misra

For more concept...\
\
[Click Here](http://msdn.microsoft.com/en-us/library/ms178194.aspx)\
\
cheers ![How to create a cookie in ASP.NET](https://www.mindstick.com/app_images/htmleditor.icons/beer.gif) ![How to create a cookie in ASP.NET](https://www.mindstick.com/app_images/htmleditor.icons/msp_thumbup.gif)\

### Reply by Uttam Misra

Check this article anoop..\
\
http://mindstick.com/Articles/c4e253f5-67dc-4211-8a1f-e29c17ce2943/\
\

// Add this on the beginning of your .cs code file\
using System;\
\
\
// Use this line when you want to save a cookie\
Response.Cookies["CookieName"].Value ="CookieValue";\
// How long will cookie exist on client hard disk\
Response.Cookies["CookieName"].Expires = DateTime.Now.AddDays(2);

// To add multiple key/value pairs in single cookie\
Response.Cookies["EmployeeData"]["FirstName"] = "Mark";\
Response.Cookies["EmployeeData"]["LastVisit"] = DateTime.Now.ToString();

\


---

Original Source: https://www.mindstick.com/forum/26/how-to-create-a-cookie-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
