private void CargarDatosContacto(EncabezadoApp enc) { lblEncTelefono.Text = enc.AMBTelefono; lblEncMail.Text = enc.AMBEMail; lblEncApeCon.Text = enc.ApellidoCony; lblEncNomCon.Text = enc.NombreCony; lblEncNroDocCon.Text = enc.AMBDocumento; TipoDocumentoApp objTipoDocumento = new TipoDocumentoApp(); DataTable dtTipoDoc = objTipoDocumento.TraerDatos(); foreach (DataRow myRow in dtTipoDoc.Rows) { if (enc.AMBTipoDoc == int.Parse(myRow[0].ToString())) { lblEncTipoDocCon.Text = myRow[1].ToString(); break; } } lblEncObservaciones.Text = enc.Comentarios; /* * if (enc.Comentarios != "") * { * string strAbrirVentana = "<script>dv_solicitud.style.display = 'list-item';" + * "ToggleImg(name, 'Cerrar.gif', 'Ocultar datos de la solicitud');" + * "document.getElementById('hdEncAbierto').value = '1';</script>"; * Response.Write(strAbrirVentana); * } */ }
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { if (Request.QueryString["id"] != null) { cargarTipoDocumento(int.Parse(Request.QueryString["id"])); } TipoDocumentoApp objTipoDocumento = new TipoDocumentoApp(); dgTipoDocumento.DataSource = objTipoDocumento.TraerDatos(); dgTipoDocumento.DataBind(); } }
private void CargarTipoDocumento(int idTipo) { TipoDocumentoApp objTipoDocumento = new TipoDocumentoApp(); DataTable dtTipoDoc = objTipoDocumento.TraerDatos(); ListItem myItem; foreach (DataRow myRow in dtTipoDoc.Rows) { myItem = new ListItem(myRow[1].ToString(), myRow[0].ToString()); if (idTipo == int.Parse(myRow[0].ToString())) { cmbTipoDocumento.SelectedIndex = -1; myItem.Selected = true; } cmbTipoDocumento.Items.Add(myItem); } }
private void CargarDatosContacto(EncabezadoApp enc) { lblEncTelefono.Text = enc.AMBTelefono; lblEncMail.Text = enc.AMBEMail; lblEncApeCon.Text = enc.ApellidoCony; lblEncNomCon.Text = enc.NombreCony; lblEncNroDocCon.Text = enc.AMBDocumento; TipoDocumentoApp objTipoDocumento = new TipoDocumentoApp(); DataTable dtTipoDoc = objTipoDocumento.TraerDatos(); foreach (DataRow myRow in dtTipoDoc.Rows) { if (enc.AMBTipoDoc == int.Parse(myRow[0].ToString())) { lblEncTipoDocCon.Text = myRow[1].ToString(); break; } } lblEncObservaciones.Text = enc.Comentarios; }
private void CargarDatosContacto(EncabezadoApp enc) { lblEncTelefono.Text = enc.AMBTelefono; lblEncMail.Text = enc.AMBEMail; lblEncApeCon.Text = enc.ApellidoCony; lblEncNomCon.Text = enc.NombreCony; lblEncNroDocCon.Text = enc.AMBDocumento; TipoDocumentoApp objTipoDocumento = new TipoDocumentoApp(); DataTable dtTipoDoc = objTipoDocumento.TraerDatos(); foreach (DataRow myRow in dtTipoDoc.Rows) { if (enc.AMBTipoDoc == int.Parse(myRow[0].ToString())) { lblEncTipoDocCon.Text = myRow[1].ToString(); break; } } lblEncObservaciones.Text = enc.Comentarios; EncabezadoApp oEncabezado = new EncabezadoApp(); oEncabezado.cargarEncabezado(int.Parse(idInformePropiedad.Value)); lblRef.Text = oEncabezado.NombreReferencia; ClienteDal cliente = new ClienteDal(); cliente.Cargar(oEncabezado.IdCliente); string strEmpresa = cliente.NombreFantasia; if (cliente.Sucursal != "") { strEmpresa = strEmpresa + " (" + cliente.Sucursal + ")"; } lblSolicitante.Text = strEmpresa; lblTipoEnvio.Text = cliente.TipoEnvio; }