我试图将我的网站转换为 pdf,我的网站用于报告,在一个页面上您输入信息,在另一页面上您通过会话获取它,如果重要的话,网站中有图片和 css。
我试图使用 itextsharp 但它对我来说太复杂了。
我尝试在这里使用一些示例,但它们都不是我所需要的,所以它不起作用。 http://simpledotnetsolutions.wordpress.com/2012/04/08/itextsharp-few-c-examples/
谁能向我解释我需要做什么?
我也试过这段代码,但它不起作用,有人告诉我我需要使用 xmlworker 但我真的不明白如何(以及它是否会工作)
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=TestPage.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
this.Page.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 100f, 0f);
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();
谢谢你
顺便说一句,如果有一个简单的解决方案需要花钱,我有能力支付它。