Cookie ASP.Net Tutorial

Be warned that cookie names are  case sensitive. 
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    protected void btnAdd_Click(object sender, EventArgs e)
    {
        Response.Cookies["message"].Value = txtCookieValue.Text;
    }



    Set Cookie


    
    

            id="lblCookieValue"
        Text="Cookie Value:"
        AssociatedControlID="txtCookieValue"
        Runat="server" />
            id="txtCookieValue"
        Runat="server" />
            id="btnAdd"
        Text="Add Value"
        OnClick="btnAdd_Click"
        Runat="server" />