/// <summary>
/// Event handler for the Load event of the Page
/// </summary>
private void Page_Load ( object sender, System.EventArgs e )
{
// Local Variables
AppCookie a = null;
// Begin
a = new AppCookie();
//
// Read the cookie data into the Page controls
//
this.lblFirstName.Text = a.FirstName;
this.lblLastName.Text = a.LastName;
this.lblEmailAddress.Text = a.EmailAddress;
this.lblCartID.Text = a.CartID;
this.lblCulture.Text = a.LanguageCulture;
}// end Page_Load