public void Inserir(string strJogos) { try { objJogosBll = new Jogos(); if (objJogosBll.Inserir(strJogos)) { ClientScript.RegisterStartupScript(Page.GetType(), "InseridoOk", "alert('INSERIU')", true); } else { ClientScript.RegisterStartupScript(Page.GetType(), "InseridoFalhou", "alert('NAO INSERIU')", true); } } catch (Exception ex) { ClientScript.RegisterStartupScript(Page.GetType(), "crash", "alert('ERRO!! NAO INSERIU')", true); } }