生成PDF的代码不起作用?

时间:2013-07-26 08:08:18

标签: c# asp.net pdf html2pdf

我正在将项目从.NET framework 1.1转换为4.0。该项目具有使用以下代码生成PDF的一些功能。

public class GeneratePDF
{       

    public GeneratePDF(){}

    public string ShowPDF(string url, string pdfFile, string exeFile) 
    {
        try
        {
            Process p = new Process();
            p.StartInfo.FileName = exeFile;
            string args = " --webpage -f " + pdfFile + " " + url;
            p.StartInfo.Arguments =  args;              
            p.Start(); 
            p.WaitForExit();
            return "1";
        }
        catch(Exception ex)
        {
            return (ex.ToString()); 
        }
    }
}

在页面上,代码如下:

if(!System.IO.Directory.Exists(Request.PhysicalApplicationPath + "pdf"))
                    {
                        System.IO.Directory.CreateDirectory(Request.PhysicalApplicationPath + "pdf");
                    }
                    string response;
                    url = "http://localhost/abc/PDFSpeechDetails.aspx?SpeechNumber=" + speechNumber +"&SpeechType=S";
                    pdfFile = Request.PhysicalApplicationPath + "pdf\\" + speechNumber + ".pdf";
                    exeFile = Request.PhysicalApplicationPath + "html2pdf\\ghtmldoc.exe";
                    GeneratePDF gPDF = new GeneratePDF();
                    response = gPDF.ShowPDF(url, pdfFile, exeFile); 
                    gPDF = null;
                    if(response == "1")
                    {
                        email.sendMailWithAttachments(txtRecEmail.Text,"","",txtSenEmail.Text,txtSenName.Text,txtSubject.Text,txtMessage.Text,Request.PhysicalApplicationPath + "pdf\\" + speechNumber + ".pdf", "speech.pdf");
                        Response.Redirect("EmailThanks.aspx?Email="+txtRecEmail.Text);
                    }
                    else 
                    {
                        throw new Exception(response); 
                    }

项目在解决方案资源管理器中有一个“ html2pdf ”文件夹,其中包含代码所指向的 exe文件ghtmldoc.exe 文件。 作为回应,我总是得到 1 ,但是没有生成PDF。

我的问题是:我们是否可以使用此代码生成PDF,如果是,那么为什么代码不适合我,因为它也不适用于旧项目(1.1)。

请帮帮我

1 个答案:

答案 0 :(得分:0)

好的,首先从this link下载最新版本的HTMLDoc软件。现在解压缩文件并在您的计算机上安装软件。它会询问“ libeay32.dll 文件丢失。从解决方案资源管理器中的文件夹中添加此文件。现在转到安装后由它创建的文件夹。复制所有文件和文件夹并将其粘贴到项目中的文件夹中。

现在更改您的代码如下:

if (!System.IO.Directory.Exists(Request.PhysicalApplicationPath + "pdf"))
                    {
                        System.IO.Directory.CreateDirectory(Request.PhysicalApplicationPath + "pdf");
                    }
                    string response;
                    url = "http://google.com";
                    pdfFile = Request.PhysicalApplicationPath + "pdf\\" + speechNumber + ".pdf";
                    //pdfFile = @"D:\\test.pdf";
                    exeFile = Request.PhysicalApplicationPath + "html2pdf\\htmldoc.exe";
                    GeneratePDF gPDF = new GeneratePDF();
                    response = gPDF.ShowPDF(url, pdfFile, exeFile);
                    gPDF = null;
                    if (response == "1")
                    {
                        email.sendMailWithAttachments(txtRecEmail.Text, "", "", txtSenEmail.Text, txtSenName.Text, txtSubject.Text, txtMessage.Text, Request.PhysicalApplicationPath + "pdf\\" + speechNumber + ".pdf", "speech.pdf");
                        Response.Redirect("EmailThanks.aspx?Email=" + txtRecEmail.Text);
                    }
                    else
                    {
                        throw new Exception(response);
                    }

这就是全部。希望它能帮到你