protected void Modificar_Click(object sender, EventArgs e)
        {
            ProvedorNegocio negocio = new ProvedorNegocio();

            try
            {
                Provedor provedor = new Provedor();
                prov.Descripcion = TxtDescripcion.Text;
                prov.Id          = Convert.ToInt32(TxtID.Text);
                negocio.modificarProve(prov);
                Response.Redirect("ListaProvedor.aspx");
            }
            catch (Exception)
            {
                throw;
            }
        }