private void atualizaEstadoFrentista(Frentista obj) { if (Int32.Parse(Request.QueryString["ID"]) == 0) { obj.novo(); } else { obj.editar(); } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { frentista = new Frentista(); frentista.ID = Int32.Parse(Request.QueryString["ID"]); Session["frentista"] = frentista; if (frentista.ID != 0) { daoFrentista = new DAOFrentista(); daoFrentista.buscarID(frentista); getDados(); habilitarCtrl(false); frentista.editar(); } else { frentista.novo(); habilitarCtrl(true); } } if (Session["buscaFornec"] != null) { txbId_fornecedor.Text = (Session["buscaFornec"] as Fornecedor).ID.ToString(); txbId_fornecedor_TextChanged(sender, e); Session.Remove("buscaFornec"); } if (Session["buscaUsuario"] != null) { txbUsuario.Text = (Session["buscaUsuario"] as Usuario).Login; txbUsuario_TextChanged(sender, e); Session.Remove("buscaUsuario"); } }