-4
StringWriter & HtmlTextWriterを使用して自分のテーブル(System.Web.UI.WebControls)をPDFに変換しようとしていますが、エラーが発生したPDFファイルがあります。C#テーブルをPDFファイルに変換する
がここに私のコードです:
table.RenderControl(htw);
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader("content-disposition", "attachment; filename=Reception.pdf");
HttpContext.Current.Response.ContentType = "application/pdf";
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
//render the htmlwriter into the response
HttpContext.Current.Response.Write(headerTable);
HttpContext.Current.Response.Write(sw.ToString());
HttpContext.Current.Response.End();
私が得た私は、PDFファイルを開くと、 "読み込み文書のPDFでのエラー"。
エラーとは何ですか?誰かがあなたを助けるためには、完全で、最小限で、検証可能な例を提供する必要があります。これには、再現可能なコードとエラーの投稿が含まれます。 – Lexi
ファイルを開くときに "pdfを読み込む際にエラーが発生しました"というメッセージが表示されます。 –
swとは何ですか?これは、有効なPDFバイト配列または何が含まれていますか? –