从C#将数据导出为PDF时出错
本文关键字:PDF 出错 数据 | 更新日期: 2023-09-27 18:21:25
我正在从C#编写一个PDF文件,如下所示:
Response.ContentType = "application/vnd.pdf";
Response.AddHeader("content-disposition", "attachment;filename=test.pdf");
Response.Write("<table border='1px'>");
/* Print Headers */
Response.Write("<tr>");
Response.Write("<th colspan='" + colspan + "'style='background-color:SlateGray;font-size:16;height:25;color:white;'><b>List of Candidates "</b></th>");
Response.Write("</tr>");
Response.Write("<tr>");
当我保存文件并打开它时,它会抛出一个异常,即文件不支持文件类型。。或文件已损坏。
要创建pdf表单html,您应该查看一下。
使用CSS 从HTML在iTextSharp中渲染PDF
要使用itextsharp创建表,请查看它的
http://www.mikesdotnetting.com/Article/86/iTextSharp-Introducing-Tables