protected void Excluir() { Conexao c = new Conexao(strConexao); DALCadastro d = new DALCadastro(c); Cadastro ctt = new Cadastro(); try { if (hOperacao.Value != "D") { hOperacao.Value = "D"; habilitarBtn(false, true, false, false, true, false); } else { d.Excluir(Convert.ToInt32(hCodigo.Value)); Limpar(); CarregaDados(); mostrarPainel(true, true, false); } } catch { } }