问题标签 [report-viewer2010]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
vb.net - 使用多个报告的报告查看器
在 vb.net 中,我们有一个效果很好的报告,它有页眉/页脚详细信息,然后中间有一个重复数据的表格,所有这些都很好。
但是客户现在想要的是另一个名为“打印个人”的按钮,这将打印相同的报告,而不是在表格中为每一行重复的数据成为具有相同页眉/页脚的页面上的单行.
因此,例如在第一个报告中,如果有一页有 5 行详细信息,“打印个人”报告将打印相同的内容,但每个报告有 5 页和 1 行。如果这是有道理的:-)
显然,如果我可以在我们使用同一份报告而不是维护两个报告的情况下做到这一点,那将是一件好事,因为报告中有很多信息。有任何想法吗?
vb.net - vb.net报告查看器多个报告
在 vb.net 中,有一种方法可以使用相同的 rdlc 但使用不同的 SQL 语句动态创建多个报告。
所以本质上我想写一个循环,在查看器中多次打开同一个报告,最终会有很多页面..
visual-studio - 为什么 Firefox 的 ASP.NET 报表查看器中没有缩放下拉菜单?
我正在使用 Visual Studio 2010。Web 报表查看器未在 Firefox 的报表工具栏中显示缩放下拉菜单。它显示在 IE 和 Chrome 中。我有 ShowZoomControl 真的。这是控件的限制吗?为什么?
winforms - Winforms ReportViewer 并在导出后打开
使用 ReportViewer 中的默认导出按钮时,有没有办法简单地提示用户打开导出的报表?我查看了 ReportExport 事件,尽管它在导出发生之前触发。我唯一能想到的就是取消 ReportExport 并创建我自己的导出功能,尽管我希望我不需要这样做。导出后是否有任何我错过了火灾的事件?
reporting-services - SSRS 2008 & ReportViewer web control > on postback, dropdown value does not get bound & no results
I'm a long time reader and first time poster. I have scoured the web for 2 days straight to no avail and decided to ask for help. Let's see what y'all got! :)
(Sorry, since I'm a new user I can't post screen shots. Spent all that time for nothing. :()
Here's the situation:
1) I created simple SSRS 2008 report that includes a single-select drop down. For simplicity I have set the "Available Values" to a fixed set of values. (This issue also happens if you bind the drop down to a a result set, so the source of data doesn't seem relevant here.)
2) The report runs fine when running it in Report Builder and on the report server itself.
3) However when displaying the report from the ASP.NET server "ReportViewer" control, the single select drop down doesn't get bound on postback. In other words, when I select a value in the drop down and click the "View Report" button, the report does not return results and the drop down goes back to the selected option "<Select a Value>".
4) This issue only happens with single-select drop downs. Multi-select dropdowns, text boxes, checkboxes etc do not have this issue.
5) For reference, here's how the control is set up. Aside from setting the ReportPath in the code behind (and only once, the first time the page is loaded), I don't manipulate the control at all.
6) My development environment: VS.NET 2010, ASP.NET Web Forms, .NET 4 framework, Microsoft.ReportViewer.Common.dll (file version 10.0.30319.1)
I have scoured the web for a couple of days and I've found no references to others having this same problem and so either I'm doing something obviously wrong or my Googling skills suck. I found only one discussion thread that seemed related and had a proposed "solution": they created a class that manually parsed the ReportViewer control's posted-back values and put them into a List<ReportParameter> so that they could call ServerReport.SetParameters() manually (note: the solution on that page is for the VS.NET2005 control and needs to be tweaked to work with 2010). Sure, that'd work but why should I have to jump through that many hoops? Again, it leads me to believe I'm doing something fundamentally wrong.
Any ideas?
c# - Microsoft.ReportViewer --> 忽略 NULL 值
我有一个传输到 ReportViewer 的对象列表。如果 ReportViewer 试图访问一个对象的 NULL 属性,它就不起作用。灵活性的原因我想添加每个对象,无论对象的一个属性是否为空。ReportViewer 一侧是否有任何选项可以说必须忽略空对象?
我尝试了这个,它可以工作,但不想在每个属性上添加一个 if 子句在 ReportViewer 上的报告绑定数据
问候克里斯
reporting-services - 报告查看器 Web 控制版本 10 尽管设置正确但仍出现错误
报告已在报告管理器中部署和运行并进行验证。
我的应用程序是一个 MVC2 应用程序,我的报告在它自己的 aspx 页面上。此页面与报表查看器控件的版本 8 一起使用,但我们移至新服务器,升级了 sql server,并尝试更新我们的网站以匹配。
服务器是带有 IIS 7.5 的 Windows Server 2008。
我正在测试 chrome 和 IE 9。
尽管我尽了最大努力,但我仍然收到此错误:
报告查看器配置错误
报告查看器 Web 控制 HTTP 处理程序尚未在应用程序的 web.config 文件中注册。添加
<add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
到 web.config 文件的 system.web/httpHandlers 部分,或添加<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
到 Internet Information Services 7 或更高版本的 system.webServer/handlers 部分。
但是,我已经这样做了。事实上,我什至从MSDN读到了这个:
要在集成模式下使用 IIS 7.0,您必须删除 system.web/httpHandlers 中的 HTTP 处理程序。否则,IIS 将不会运行应用程序,而是会显示一条错误消息。
为了安全起见,我在直接将处理程序添加到 IIS 时尝试了两者的组合,只是在我的配置中添加了 Web 服务器 http 处理程序,只是在我的配置中添加了 http 处理程序,以及两者。
让我们从我的 web.config 开始
我有程序集、构建提供程序和处理程序。还有什么可能是错的?
visual-studio-2010 - 使用 ReportViewer 和 VS2010 的主从报告 - 两个表不是一个
我已经详细浏览了GotReportViewer.com,但我找不到足够的线索来真正弄清楚如何做到这一点。
我需要在主键上有效地连接两个数据表(客户端),并在一个区域中显示来自一个表的一些信息,并在另一个区域中显示另一个(列出的)信息。
根据我的阅读,可以(尽管我还没有管理它)将表连接在一起形成第三个表,并使用过滤器来实现这一点,尽管在动态构建数据源时似乎需要做很多工作如我一般。
是否可以生成两个共享一个键的数据源(一个实现 1:many 关系的“多”部分),并创建一个使用两者的主从报表?
如果有任何简单的教程(如果我需要代码,C# 或 VB 会很好)我会很感激一个指针。关于与此类似的主题,这里有几个未回答的问题,令人担忧!
TIA
google-chrome - Safari 上的 SSRS 报告查看器支持
我找到了这个浏览器支持矩阵:http: //msdn.microsoft.com/en-us/library/ms251673.aspx。我正在寻找更新的东西,包括 Safari 5 和 Chrome。Safari 5 的支持方式与本文档中 Safari 4 的支持方式相同,还是不受官方支持?
谢谢。
sql-server - 报告查看器 SP 1 和 Chrome/Safari
我最近安装了 Report Viewer SP 1 补丁,但我仍然无法在 safari 或 chrome 中看到报告的结果。导出报告工作正常,但不能在报告查看器本身中查看结果。所以 SP 1 并没有帮助,即使我认为我看到了一个说它会的矩阵。有没有办法让 Safari 和 Chrome 与最新的报告查看器一起工作?