Development ASP.Net

<%@ Page language="c#" src="CookieExample.aspx.cs" AutoEventWireup="false" Inherits="YourNamespace.CookieExample" %>

  
    
              runat="server" Width="412px" Height="130px" BackColor="LightYellow" Font-Size="Medium"
        Font-Names="Verdana" BorderWidth="2px" BorderStyle="Groove">
              Width="137px" Text="Submit Page">
              Width="184px" Height="24px">
              runat="server" Width="137px" Text="Create Cookie">
              Width="56px" Height="16px" Font-Size="X-Small" Font-Names="Verdana">Name:
    
  

<%--
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Net;
namespace YourNamespace
{
  /// 
  /// Summary description for CookieExample.
  /// 

  public class CookieExample : System.Web.UI.Page
  {
    protected System.Web.UI.WebControls.Label lblWelcome;
    protected System.Web.UI.WebControls.TextBox txtName;
    protected System.Web.UI.WebControls.Button cmdStore;
    protected System.Web.UI.WebControls.Button Button1;
    protected System.Web.UI.WebControls.Label Label1;
  
    private void Page_Load(object sender, System.EventArgs e)
    {
      HttpCookie cookie = Request.Cookies["Preferences"];
      if (cookie == null)
      {
        lblWelcome.Text = "Unknown Customer";
      }
      else
      {
        lblWelcome.Text = "Cookie Found.

";
        lblWelcome.Text += "Welcome, " + cookie["Name"];
      }
    }
    #region Web Form Designer generated code
    override protected void OnInit(EventArgs e)
    {
      //
      // CODEGEN: This call is required by the ASP.NET Web Form Designer.
      //
      InitializeComponent();
      base.OnInit(e);
    }
    
    /// 
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// 

    private void InitializeComponent()
    {    
      this.cmdStore.Click += new System.EventHandler(this.cmdStore_Click);
      this.Load += new System.EventHandler(this.Page_Load);
    }
    #endregion
    private void cmdStore_Click(object sender, System.EventArgs e)
    {
      HttpCookie cookie = Request.Cookies["Preferences"];
      if (cookie == null)
      {
        cookie = new HttpCookie("Preferences");
      }
      cookie["Name"] = txtName.Text;
      cookie.Expires = DateTime.Now.AddYears(1);
      Response.Cookies.Add(cookie);
      lblWelcome.Text = "Cookie Created.";
      lblWelcome.Text += "New Customer: " + cookie["Name"];
    }
  }
}
--%>