Esempio n. 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Page.PreviousPage != null)
            {
                try
                {
                    Label label = new Label
                    {
                        Text = "Your purchase is successful, the total price is" + Request.Form["LiteralTotal"]
                    };
                    Panel1.Controls.Add(label);

                    var           cart  = Session[User.Identity.GetUserId()] as List <Purchase>;
                    PurchaseModel model = new PurchaseModel();
                    model.MarkOrdersAsPaid(cart);

                    Session[User.Identity.GetUserId()] = null;
                }
                catch (Exception ex)
                {
                    Literal1.Text = ex.ToString();
                }
            }
        }