protected void btnPesquisar_Click(object sender, EventArgs e) { TarefaDAO dao = new TarefaDAO(); grdTarefa.DataSource = dao.FindByTitulo(inputPesquisar.Text); grdTarefa.DataBind(); }