protected void btnSalvarOcorrencia_Click(object sender, EventArgs e)
    {
        Ocorrencia oc = new Ocorrencia();

        oc.cadastrarOcorrencia(txtArea.InnerText, dplLabs.SelectedItem.Text);

        Response.Redirect("FrmOcorrencia.aspx");
    }