private void fillForm() { int Id = 0; int.TryParse(hfId.Value, out Id); try { Aduana o = CatalogCtrl.AduanaGet(Id); txt_codigo.Text = o.Codigo; txt_nombre.Text = o.Nombre; } catch { throw; } }