protected void LoadGridView() { Instrutor_TO InstrutorTO = new Instrutor_TO(); try { List <Instrutor_TO> ListInstrutorTO = new Instrutor_BO().SearchAll(InstrutorTO); grv_instrutor.DataSource = ListInstrutorTO; grv_instrutor.DataBind(); } catch (Exception) { throw; } }
//Função editar no Gridview protected void grv_instrutor_RowEditing(object sender, GridViewEditEventArgs e) { Instrutor_TO InstrutorTO = new Instrutor_TO(); try { InstrutorTO.ins_codigo = Convert.ToInt32(grv_instrutor.DataKeys[e.NewEditIndex]["ins_codigo"]); InstrutorTO = new Instrutor_BO().GetByCode(InstrutorTO); txb_nome.Text = InstrutorTO.ins_nome; txb_rg.Text = Convert.ToString(InstrutorTO.ins_rg); txb_telefone.Text = Convert.ToString(InstrutorTO.ins_telefone); txb_data_nascimento.Text = InstrutorTO.ins_data_nascimento.ToShortDateString(); txb_descricao.Text = InstrutorTO.ins_descricao; txb_email.Text = InstrutorTO.ins_email; ViewState["ins_codigo"] = InstrutorTO.ins_codigo; } catch (Exception) { throw; } }