Ejemplo n.º 1
0
        protected void btn_create_product_Click(object sender, EventArgs e)
        {
            ProduitDAO pdao = new ProduitDAO("clone_kijiji", "root", "root");

            pdao.CreateProduit(new Produit(product_id.Text, product_name.Text, product_category.Text, Convert.ToInt32(product_price.Text)));
        }