1
我有一個aspx頁面,我想將它渲染爲pdf文件。如何渲染pdf到文件
FileStream fs = File.Create(path);
converter.SavePdfFromHtmlStringToStream(
pagehtml, fs);
fs.Close();
我收到此代碼錯誤。我的疑問是,我正在使用的文件流格式是否正確?
我有一個aspx頁面,我想將它渲染爲pdf文件。如何渲染pdf到文件
FileStream fs = File.Create(path);
converter.SavePdfFromHtmlStringToStream(
pagehtml, fs);
fs.Close();
我收到此代碼錯誤。我的疑問是,我正在使用的文件流格式是否正確?
其實您正在使用的文件流是正確的。關鍵是檢查你在哪裏調用這段代碼。我用於渲染事件(page-prerender)並出現錯誤。
任何答案Code Gurus ??? – sms