protected void Page_Load(object sender, EventArgs e)
        {
            string rawId = Request.QueryString["ProductID"];
            int    productId;

            if (!String.IsNullOrEmpty(rawId) && int.TryParse(rawId, out productId))
            {
                using (CarrinhodecomprasAction usersShoppingCart = new CarrinhodecomprasAction())
                {
                    usersShoppingCart.AddToCart(Convert.ToInt16(rawId));
                }
            }
            else
            {
                Debug.Fail("ERRO : O id do produto é nulo.");
                throw new Exception("ERRO: Recarregar o produto sem id");
            }
            Response.Redirect("/Carrinhoc.aspx");
        }