Session Cookie ASP.Net

<%@ Page Language="VB" %>
  
      Sub Page_Load(Source As Object, E as EventArgs)
        If Not IsPostBack Then
          MyButton.Text = "Save Cookie"
          MyDropDownList.Items.Add("Blue")
          MyDropDownList.Items.Add("Red")
          MyDropDownList.Items.Add("Gray")
        End If
      End Sub
    Public Sub Click(ByVal sender As Object, ByVal e As System.EventArgs)
      Dim MyCookie As New HttpCookie("Background")
      MyCookie.Value = MyDropDownList.SelectedItem.Text
      Response.Cookies.Add(MyCookie)   
      End Sub
  

  
    
      
      
    
  

//////////////////////////////////////////////////////////
// Get saved Cookies 
<%@ Page Language="VB" %>
  
    Sub Page_Load(Source As Object, E as EventArgs)
      Response.Cache.SetExpires(DateTime.Now)
    End Sub
  
  
    ">