将detailview转换为pdf [英] convert detailview to pdf

查看:106
本文介绍了将detailview转换为pdf的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码

Response.ContentType = "application/pdf";
        Response.AddHeader("content-disposition", "attachment;filename=UserDetails.pdf");
        Response.Cache.SetCacheability(HttpCacheability.NoCache);
        StringWriter sw = new StringWriter();
        HtmlTextWriter hw = new HtmlTextWriter(sw);
        DetailsView_icard.AllowPaging = false;
        DetailsView_icard.DataBind();
        DetailsView_icard.RenderControl(hw);
        DetailsView_icard.HeaderRow.Style.Add("width", "15%");
        DetailsView_icard.HeaderRow.Style.Add("font-size", "10px");
        DetailsView_icard.Style.Add("text-decoration", "none");
        DetailsView_icard.Style.Add("font-family", "Arial, Helvetica, sans-serif;");
        DetailsView_icard.Style.Add("font-size", "8px");
        StringReader sr = new StringReader(sw.ToString());
        Document pdfDoc = new Document(PageSize.A2, 7f, 7f, 7f, 0f);
        HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
        PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
        pdfDoc.Open();
        htmlparser.Parse(sr);
        pdfDoc.Close();
        Response.Write(pdfDoc);
        Response.End();


我的错误是


and my error is

Server Error in '/Pollux' Application.
The document has no pages.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.IO.IOException: The document has no pages.

Source Error:


Line 83:         pdfDoc.Open();
Line 84:         htmlparser.Parse(sr);
Line 85:         pdfDoc.Close();
Line 86:         Response.Write(pdfDoc);
Line 87:         Response.End();

推荐答案

^ ]


这篇关于将detailview转换为pdf的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆