Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--SI SE EJECUTA LOCAL O INSTALADO EN SERVER 1(Local) o 2(instalado) -->
- <add key="Local" value="1" />
- <add key="Path" value="H:\VERSIONADOR\BBVA\SVN_BACKOFFICE_LT\tronco\Version_Produccion_LT_BO_04_04_2017 - TICKET 575 - FECHA VENC. PLAN\Modulos\Operacion\Upload\" />
- <add key="PathWeb" value="H:\VERSIONADOR\BBVA\SVN_BACKOFFICE_LT\tronco\Version_Produccion_LT_BO_04_04_2017 - TICKET 575 - FECHA VENC. PLAN\Modulos\Operacion\Upload\" />
- int prueba = int.Parse((System.Configuration.ConfigurationManager.AppSettings["Local"].ToString()));
- if (prueba == 1)
- // cuando este forma local
- INFORME.LocalReport.ReportPath = (System.Configuration.ConfigurationManager.AppSettings["Path1"].ToString() + "Detalle_Documentos.rdlc");
- else
- //Cuando este instalado
- INFORME.LocalReport.ReportPath = (Path.GetFullPath("/Reporte/Detalle_Documentos.rdlc"));
- //---------------------------------------------------------------------
- // cargamos los datos en el objeto de reporte
- //bva Colombia
- Microsoft.Reporting.WebForms.ReportDataSource datos = new Microsoft.Reporting.WebForms.ReportDataSource("DS_Servicio_SP_SERV_DEV_DOC_RECHAZO", table);
- //pasamos el DataSet a los Reportes
- INFORME.LocalReport.DataSources.Add(datos);
- // Cargar Datos en el Report
- INFORME.DataBind();
- // ------ genera un archivo pdf para sera adjuntado al correo ------------//
- if (prueba == 1)
- // cuando este forma local
- path_app = System.Configuration.ConfigurationManager.AppSettings["Path1"].ToString();
- else
- // cuando este instalado
- path_app = Path.GetFullPath("~/Reporte");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement