【问题标题】:Save File to a given location without Open/Save Dialogue Box ASP.NET在没有打开/保存对话框 ASP.NET 的情况下将文件保存到给定位置
【发布时间】:2011-11-13 18:17:27
【问题描述】:
public static void ServeAsPDF(System.Web.UI.Page webPage, Boolean download, String FileName)
{
    try
    {
        string htmlString = GetHtmlForPage(webPage);

        webPage.Response.Buffer = true;
        webPage.Response.Clear();
        webPage.Response.ContentType = "application/vnd.ms-word"; //application/octet-stream
        webPage.Response.ContentEncoding = System.Text.UnicodeEncoding.UTF8;
        webPage.Response.Charset = "UTF-8";
        webPage.Response.AddHeader("Content-Disposition:", "attachment; filename="+ FileName +"");
        webPage.Response.AddHeader("cache-control", "must-revalidate");


        webPage.Response.Write("<html xmlns:v='urn:schemas-microsoft-com:vml' xmlns:o='urn:schemas-microsoft-com:office:office' xmlns:w='urn:schemas-microsoft-com:office:word'  xmlns:m='http://schemas.microsoft.com/office/2004/12/omml' xmlns='http://www.w3.org/TR/REC-html40'>");
        webPage.Response.Write("<head>");
        webPage.Response.Write("<title>PF FUND</title>");
        webPage.Response.Write("<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=UTF-8'>");
        webPage.Response.Write("<meta name=ProgId content=Word.Document>");
        webPage.Response.Write("<meta name=Generator content='Microsoft Word 9'>");
        webPage.Response.Write("<meta name=Originator content='Microsoft Word 9'>");
        webPage.Response.Write("<!--[if gte mso 9]> <xml> <w:WordDocument> <w:View>Print</w:View> <w:Zoom>100</w:Zoom> <w:DoNotOptimizeForBrowser/> </w:WordDocument> </xml> <![endif]-->");
        webPage.Response.Write("<style>");
        webPage.Response.Write("@page { size: 8.27in 11.69in; mso-page-orientation: Portrait Orientation; }");
        webPage.Response.Write("@page Section1 {margin:0.5in 0.5in 0.5in 0.5in;mso-paper-source:0;}");
        webPage.Response.Write("div.Section1 {page:Section1;}");
        webPage.Response.Write("@page Section2 {size:841.7pt 595.45pt;mso-page-orientation:landscape;margin:1.0in 1.0in 1.0in 1.0in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}");
        webPage.Response.Write("div.Section2 {page:Section2;}");
        webPage.Response.Write("</style>");
        webPage.Response.Write("</head>");
        webPage.Response.Write("<body>");
        webPage.Response.Write("<div class=Section1>");
        webPage.Response.Write(htmlString);
        webPage.Response.Write("</div>");
        webPage.Response.Write("</body>");
        webPage.Response.Write("</html>");
        webPage.Response.Flush();
        webPage.Response.End();
    }
    catch
    {
        //Handle Exception
    }
}
public static string GetHtmlForPage(System.Web.UI.Page PgIn)
{
    StringWriter sw = new StringWriter();
    HtmlTextWriter htw = new HtmlTextWriter(sw);
    Panel Panel1 = (Panel)PgIn.FindControl("Panel1");
    Panel1.RenderControl(htw);
    return sw.ToString();
}

我使用此代码从 aspx 页面生成 word 文件。但我的问题是,我需要从这个 word 文件生成 pdf。所以我想读取 word 文件,将其保存在字节数组中并将 bye 数组呈现为 PDF。

但是这个word文件是在客户端生成的。我需要将此文件保存在服务器上,然后读取此word文件并生成pdf,以便用户只能查看PDF,而不是word File..

之前我尝试将网页转换为 PDF 但失败了..所以我发现生成一个 word 文件然后将其转换为 PDF 很容易..

【问题讨论】:

    标签: c# asp.net pdf ms-word render


    【解决方案1】:

    我建议你使用 Office InterOp 创建 word 文档,如果你想创建 pdf 则使用 iText api。

    【讨论】:

    • @adatapost 您好,感谢您的回复。我尝试使用 iTextSharp 免费库将 aspx 页面转换为 PDF。但是在阅读了它的文档之后,我才知道 iTextSharp 不能应用 HTML Table css 样式。我们需要创建 pdfTables,对其应用样式并动态填充单元格。我这样做,我会失去我的表格格式。那么有没有办法使用 iTextSharp 将 aspx 页面中的 HTMl 表(带 css)转换为 pdf 而无需创建 pdfTables ?
    猜你喜欢
    • 1970-01-01
    • 2015-11-07
    • 2015-07-21
    • 1970-01-01
    • 1970-01-01
    • 2015-05-17
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多