随笔分类 - [04] Report报表
微软的企业级报表设计系统(RDL)。
摘要: BIRT is an Eclipse-based open source reporting system for web applications, especially those based on Java and J2EE. BIRT has two main components: a report designer based on Eclipse, and a run...
阅读全文
摘要:When you run ReportViewer.exe, the following files are installed in the Global Assembly Cache folder on the deployment computer. Microsoft.ReportViewer.Common.dll Microsoft.ReportViewer.ProcessingObje...
阅读全文
摘要:I am trying to use ReportViewer 9 in Visual Studio 8 but I get this error when I try to run the page: The base class includes the field 'ReportViewer1', but its type (Microsoft.Reporting.WebForms.Rep...
阅读全文
摘要:Export PDF/Excel from ReportViewer 之前项目报表采是用ReportService做的,客户端用ReportViewer调用。部署在客户的测试环境几乎都不超时,在正式环境部署很容易出现超时。当然正式环境用户比较多(1000多个),报表也比较复杂,查询需要一定时间,各种方式都尝试过,总报超时。我经过测试发现报表运行时间超过3分钟左右就超时,报表时间长运行出来客户可以...
阅读全文
摘要:An error has occurred during report processing. Index was outside the bounds of the array. Finally i can export to excel, .. i found that reporting services has a limitation.. you can´t inser...
阅读全文
摘要:I'm creating a VB.NET front-end application for viewing reports in local mode. I noticed that ReportViewer.RefreshReport() seems to be generating a memory leak by observing my application's memo...
阅读全文
摘要:using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts...
阅读全文
摘要:RDL/RDLC (Reporting Services )导出 Excel的 Updated: 12 December 2006 A report can consist of multiple pages of data. Reports that are generated by rendering extensions that support page breaks can have...
阅读全文
摘要:RDL/RDLC (Reporting Services )导出 Excel的数据呈现方式 A data region is an area on a report containing data from a data source. Types of data regions are charts, lists, tables, and matrices. This topic d...
阅读全文
摘要:exporting a pdf and excel Takes way to long Slow performance when exporting to Excel The reports when run on their own is running fine and is loading within an ecceptable time. However, the problem ...
阅读全文
摘要:Reporting Services in Local Mode rdlc在设计时,如果要将DateTime类型的字段展示成x年y月z日,那么需要使用格式化字符串的函数,但是格式枚举会有问题,它总显示一个红色波浪线, 代表这个脚本有问题,可是实际上,在msdn中查询出来的任意格式枚举都不会有错误,显示效果是正常的,这个算是一个假警报。 rdlc在使用自带的导出功能时,当数据量超过65536时,它无...
阅读全文
摘要:RDL/RDLC (Reporting Services )导出 Excel的种种限制 Updated: 12 December 2006 There are limitations on reports that are exported to Microsoft Excel. The most significant are the following: Support for Micros...
阅读全文
摘要:JavaScript API One of the new features we added to the ASP.Net Report Viewer in Visual Studio 2010 is a JavaScript API to allow you to interact with the viewer on client. In reading many of the...
阅读全文
摘要:Hey, in this scenario, it is hard to improve performance, So I suggest to check whether the memory of the server is sufficient. http://forums.asp.net/p/1442183/3269188.aspx http://social.msdn.micros...
阅读全文
摘要: ------------------------------- For System.OutOfMemory.Exception, try to check if this problem will go away after iis reset or terminating aspnet_wp.exe worker process in asp.net web ...
阅读全文
摘要:ReportDataSource reportDataSource = new ReportDataSource("queryStat_wjwj", SqlHelper.ExecuteDataset(sql.ToString())); 出现错误 “值不在预期的范围内” 注意 第2个参数 SqlHelper.ExecuteDataset(sql.ToString()) 返回的...
阅读全文
摘要: AsyncRendering = False 已是便在百度和google里狂搜,大概有以下几种解决方案: 1.在web.config中添加如下节点: <sessionState mode="InProc" cookieless="true" ></sessionState> 但这种情...
阅读全文
摘要: Finally i can export to excel, .. i found that reporting services has a limitation.. you can´t insert a table in another table or matrix.. only List can be nested.. i try to say.. if you need ...
阅读全文
摘要:WebForms的ReportViewer提供了导出成EXCEL或者PDF的报表。(Reporting Services) 但是导出时报表会另存为 .xls[1] 或者 .pdf[1],导致文件无法直接打开。 这需要给ReportViewer设定一个DisplayName解决。 ReportViewer1.LocalReport.DisplayName = "REPORT_&quo...
阅读全文
摘要:ex.Message: An error has occurred during report processing. ex.Source: Microsoft.ReportViewer.WebForms ex.StackTrace: at Microsoft.Reporting.WebForms.LocalReport.InternalRender(Strin...
阅读全文