Advertisement
panxop

Untitled

Apr 27th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.01 KB | None | 0 0
  1.  
  2.  
  3.     <!--SI SE EJECUTA LOCAL O  INSTALADO EN SERVER 1(Local) o 2(instalado) -->
  4.     <add key="Local" value="1" />
  5.  
  6.  
  7. <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\" />
  8.    <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\" />
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. int prueba = int.Parse((System.Configuration.ConfigurationManager.AppSettings["Local"].ToString()));
  16.  
  17.                    if (prueba == 1)
  18.                        // cuando este forma local
  19.                        INFORME.LocalReport.ReportPath = (System.Configuration.ConfigurationManager.AppSettings["Path1"].ToString() + "Detalle_Documentos.rdlc");
  20.                    else
  21.                        //Cuando este instalado
  22.                        INFORME.LocalReport.ReportPath = (Path.GetFullPath("/Reporte/Detalle_Documentos.rdlc"));
  23.  
  24.                    //---------------------------------------------------------------------
  25.  
  26.                    // cargamos los datos en el objeto de reporte
  27.                    //bva Colombia
  28.                    Microsoft.Reporting.WebForms.ReportDataSource datos = new Microsoft.Reporting.WebForms.ReportDataSource("DS_Servicio_SP_SERV_DEV_DOC_RECHAZO", table);
  29.  
  30.                    //pasamos el DataSet a los Reportes
  31.  
  32.                    INFORME.LocalReport.DataSources.Add(datos);
  33.  
  34.                    // Cargar Datos en el Report
  35.                    INFORME.DataBind();
  36.  
  37.                    // ------ genera un archivo pdf para sera adjuntado al correo ------------//
  38.  
  39.                    if (prueba == 1)
  40.                        // cuando este forma local
  41.                        path_app = System.Configuration.ConfigurationManager.AppSettings["Path1"].ToString();
  42.                    else
  43.                        // cuando este instalado
  44.                        path_app = Path.GetFullPath("~/Reporte");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement