0

我尝试使用以下代码生成 word 文档:

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Charset = "";

HttpContext.Current.Response.ContentType = "application/doc";
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; 
filename=" + DateTime.Now + ".doc");

var strHTMLContent = new StringBuilder();

strHTMLContent.Append(
    "<h1 title='Heading' align='Center'style='font-family: verdana; font 
-size: 80 % ;color: black'><u>Document Heading</u> </h1> ");

strHTMLContent.Append("<br>");
strHTMLContent.Append("<table align='Center'>");

// Row with Column headers
strHTMLContent.Append("<tr>");
strHTMLContent.Append("<td style='width:100px; background:# 99CC00'>
<b>Column1 </b>  </td>");

strHTMLContent.Append("<td style='width:100px;background:# 99CC00'>
<b>Column2 </b>  </td>");

strHTMLContent.Append("<td style='width:100px; background:# 99CC00'>
<b>Column 3</b></td>");
strHTMLContent.Append(" </tr> ");

// First Row Data
strHTMLContent.Append("<tr>");
strHTMLContent.Append(
    "<td style='width:100px'></td>");
strHTMLContent.Append(
    "<td style='width:100px'>b</td>");
strHTMLContent.Append(
    "<td style='width:100px'>c</td>");
strHTMLContent.Append("</tr>");

// Second Row Data
strHTMLContent.Append("<tr>");
strHTMLContent.Append(
    "<td style='width:100px'>d</td>");
strHTMLContent.Append(
    "<td style='width:100px'>e</td>");
strHTMLContent.Append(
    "<td style='width:100px'>f</td>");
strHTMLContent.Append("</tr>");

strHTMLContent.Append("</table>");

strHTMLContent.Append("<br><br>");
strHTMLContent.Append(
    "<p align='Center'> Note : This is a dynamically 
            generated word document  </p> ");
HttpContext.Current.Response.Write(strHTMLContent);
//  HttpContext.Current.Response.BinaryWrite(strHTMLContent);
HttpContext.Current.Response.End();
HttpContext.Current.Response.Flush();

有谁知道如何以编程方式将此word文档转换为PDF文件?

4

3 回答 3

1

由于您正在构建要转换的 HTML,您可以使用iTextSharp API 从 HTML 转换为 PDF:ITextSharp HTML to PDF? . iTextSharp 是免费的。

于 2012-07-12T08:30:22.177 回答
0

在使用了许多不同的选项之后,这是迄今为止我们发现的最好的一个。昂贵,但惊人的速度和多功能性,以及体面(虽然不是很好)的支持文档。 http://www.html-to-pdf.net/Support.aspx#csharp - 如果是用于可以转嫁成本的商业项目,那么值得一看。

于 2012-07-12T08:38:43.277 回答
0

默认情况下,MS .Net Framework 不提供任何内容,您必须为其使用第三方 API

例如,请参阅 API easyPDF 使用 C# http://www.pdfonline.com/easypdf/sdk/programming-pdf/csharp/index.htm?_kk=%2Bpdf%20%2Bc%23&_kt=0e3c1bed-3404进行转换的链接-4289-8143-77333a737850&gclid=CPT--pXTk7ECFa4mtAodKn5ylw

于 2012-07-12T07:51:22.600 回答