• Sábado 4 de Mayo de 2024, 15:01

Autor Tema:  Concatenar Pdfs  (Leído 1040 veces)

jescobar1

  • Nuevo Miembro
  • *
  • Mensajes: 1
    • Ver Perfil
Concatenar Pdfs
« en: Lunes 13 de Junio de 2011, 01:33 »
0
Hola,

A ver si me podeís hechar una mano, estoy intentando concatenar pdf`s, he probado con este código, no dá error pero no hace nada.


String patchServer = Server.MapPath(@"../bin/pdftk.exe");
Process myProcess = Process.Start(patchServer, """ + Server.MapPath
     @"menusManuales//menu_64.pdf") + "" "" + Server.MapPath(@"menusManuales//menu_63.pdf") + " cat output  "" + Server.MapPath(@"menu_6466.pdf") + ""
     dont_ask");"
if (myProcess != null)
{
   myProcess.StartInfo.CreateNoWindow = false;
   myProcess.EnableRaisingEvents = true;
   while (!myProcess.HasExited) { }
      Response.Redirect("../reservas/menusManuales/menu_6466.pdf");
}