Esempio n. 1
0
        private void fillForm()
        {
            int Id = 0;

            int.TryParse(hfId.Value, out Id);

            try
            {
                Nom o = CatalogCtrl.NomGet(Id);
                txt_nombre.Text      = o.Nombre;
                txt_descripcion.Text = o.Descripcion;
            }
            catch
            {
                throw;
            }
        }