protected void Button2_Click(object sender, EventArgs e)
        {
            ClsProductos p = new ClsProductos();

            string itemseleccionado = DropDownList1.SelectedItem.Text;

            p.pNombre    = txtnombre.Text;
            p.pPrecio    = double.Parse(txtprecio.Text);
            p.pCantidad  = int.Parse(txtcantidad.Text);
            p.pFechaVenc = txtfechanaci.Text;
            p.pTipo      = itemseleccionado;
            p.pImage     = txtUrlImage.Text;

            bool respuestasql = p.insertarProducto();

            if (respuestasql == true)
            {
                Response.Write("<script>alert('guardado')</script>");
                txtnombre.Text    = "";
                txtprecio.Text    = "";
                txtcantidad.Text  = "";
                txtfechanaci.Text = "";
            }
            else
            {
                Response.Write("<script>alert('Error al guardar')</script>");
            }
        }