我爲客戶創造asp.net應用網,他喜歡有自己的網頁上報道,所以我對頁面文件RDLC和IM使用默認的asp.net報表查看器控件呈現這個文件在頁面上...一切都很好,除非客戶端想要將文件保存爲pdf時頁面的結構發生變化並且看起來不一樣我也注意到字段中的某些值是空的,但它們顯示在頁面上,當即時通訊保存在Word(*。doc)格式相同的報告也文字文件就像它應該是...問題是隻有PDF。任何建議,歡迎報表查看器控制導出內容爲PDF
4
A
回答
5
這個問題是由於報告屬性頁邊距設置,如果你是具有同樣的問題將邊距設置(左,右,上,下)設置爲0in。你的問題解決了。
0
嘗試這個代碼....這將有助於displayy烏爾數據PDF格式
protected void submit_Click(object sender, EventArgs e)
{
bindReportData();
try
{
// Export the Report to Response stream in PDF format and file name Customers
abc_reportDocument.ExportToHttpResponse(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, true, "ABC");
// There are other format options available such as Word, Excel, CVS, and HTML in the ExportFormatType Enum given by crystal reports
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
ex = null;
}
}
private void bindReportData()
{
abc_reportDocument = new ReportDocument();
dsReport = new DataSet();
dsReport = getAccumulationData();
if (dsReport.Tables[0].Rows.Count > 0)
{
abc_reportDocument.Load(this.MapPath("report1.rpt"));
abc_reportDocument.Database.Tables[0].SetDataSource(dsReport.Tables[0]);
rptviewerAccumulation.ReportSource = abc_reportDocument;
rptviewerAccumulation.DataBind();
}
}
相關問題
- 1. 報表查看器導出爲PDF(ASP.NET)
- 2. 導出到pdf - 報表查看器
- 3. 報告查看器Landscape PDF導出
- 4. 報告查看器導出爲pdf獲取錯誤
- 5. WPF文檔查看器導出爲PDF
- 6. 導出Crystal報表爲PDF
- 7. 查看控制器容器
- 8. 更改報表名稱在從報表查看器導出PDF時
- 9. 在MVC的PDF查看器在查看中顯示pdf內容
- 10. SSRS導出PDF和TIF報告呈現不同於在報表查看器
- 11. 微軟報表WebForms報表查看器 - 導出到Excel
- 12. jsPDF:查看PDF的內容
- 13. 控制pdf的查看
- 14. 從控制器傳遞警報查看
- 15. 導出報表爲PDF AX 2012 CU10
- 16. 導出報表時出現ASP.NET錯誤(水晶報表爲PDF)
- 17. 保存Inkcanvas控制內容爲pdf
- 18. 將Flash內容導出爲PDF?
- 19. 將畫布內容導出爲PDF
- 20. 報告查看器導出爲pdf格式沒有嵌入字體
- 21. VS2008 CR報告查看器。打印和導出爲PDF不起作用
- 22. 看不到導航控制器下視圖控制器的內容
- 23. Cakephp3:訪問控制器內的查看內容
- 24. 從報表查看器導出後,Excel文件出錯
- 25. 強制控制器查看內存
- 26. Asp.Net MVC和報表查看器控件
- 27. 報表查看器控件VB.Net1.1
- 28. Silverlight中的報表查看器控件
- 29. Visual Studio報表查看器控件2008
- 30. 報表查看器
+1對於這個簡單的解決方案,我無法感謝你。 – northpole
完美!恰恰是我錯過了。我在ReportViewer控件上,而不是實際的.rdlc報表屬性。謝謝! – Alex
坦克很多 之後,從答4幾年,真的幫了我 坦克再次 – SaraniO