private void setCliente()
        {
            int Id = 0;

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

            try
            {
                clienteGrupoNombre = CatalogCtrl.Cliente_grupoGet(Id).Nombre;
            }
            catch
            {
                throw;
            }
        }
Example #2
0
        private void setCliente()
        {
            int Id = 0;

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

            try
            {
                lnkCliente.Text        = CatalogCtrl.Cliente_grupoGet(Id).Nombre;
                lnkCliente.NavigateUrl = "frmClienteGrupo.aspx?Action=Udt&Key=" + Id.ToString();
            }
            catch
            {
                throw;
            }
        }