问题标签 [dynamic-rdlc-generation]
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.
c# - 如何在 asp.net 中为 RDLC ReportPath 设置动态 url?
我使用下面的代码将 RDLC 文件从一个应用程序调用到另一个应用程序。下面的代码驻留在一个应用程序中。RDLC 文件位于另一个应用程序中。
但是上面的代码在生成excel文件时失败了。如何解决上述问题?
report - 报告 (rdlc) 处理期间发生错误
创建 RDLC 报告时出现错误。错误在于
“报表处理过程中发生错误。无法创建与数据源“ds_SalesQuotation”的连接。关闭数据读取器时调用“读取”不是有效操作。读取器关闭时调用读取的尝试无效。“
我创建 ds_SalesQuotation.xsd 文件。在 rdlc 报告中,将数据集名称设为“dsSalesQuotation”并将数据源设置为“ds_SalesQuotation”
我的代码在 reportviewr(.aspx) 上
我的代码中是否有任何错误。请任何人检查..
c# - 当仅图像名称保存在数据库中时,如何在 RDLC 报告中显示图像?
我只将图片名称存储在数据库中,实际图片存储在项目目录“SiteImages”中。
现在我想在 RDLC 报告中显示图像但不显示。代码:
数据库中字段的名称是PersonalInfoEmployeePicture。
c# - 为什么报告无法显示图像?
我正在向子报告发送一个参数以显示图像,但没有这样做。为什么 ?
我以相同的方式在父报表中加载了图像,但该过程在子报表中不起作用。
为什么 ?
家长报告:
子报告:(钻取)
c# - 如何设置来自 C# 的布尔值的 RDLC 参数
我在 C# 中使用 MS ReportViewer 来呈现报告。我的用法和助手都工作得很好,我可以很好地生成报告和设置参数......除非参数在 RDLC 中键入为非字符串
示例:RDLC 参数 IsMyFavorite 的类型为布尔值。
在我的 RDLC 中,我使用参数隐藏文本框我的隐藏表达式是 =Parameters!IsMyFavorite.Value
当我渲染为 PDF 时,我收到一条错误消息,说我缺少一个参数……这是不正确的。而且我知道我正在将一个字符串传递给一个布尔值并且它是不匹配的。因此,我可能确实错过了作为布尔值的参数。但是使用 C#,我如何将新的 ReportParameter 作为布尔值传递?
c# - 是否尝试设置此报告中未定义的报告参数“SubImgPath”?
我创建了一个子报表,如果从父报表传递参数,它会加载数据。除了图像之外,它工作正常。图片不加载。它因抛出错误而失败:
尝试设置此报告中未定义的报告参数“SubImgPath”。
我在子报告和发送参数中定义了一个参数“SubImgPath”但失败:
pdf - How to send jqPlot Image to the Microsoft ReportViewer RDLC in order to generate a PDF
All:
Here is the information about my Web Application development environment:
-Microsoft Visual Studio Professional 2013
-.NET Framework 4.0
I've installed the following:
-Microsoft Report Viewer 2012 Runtime
-Microsoft Report Viewer 2010 SP1 WebForms
-jqPlot Charts version: 1.0.8 revision: 1250
For the application that we develop at work, we are able to generate a Graph using jqPlot.
jqPlot will place the graph that is generated in the following div section within an ASPX page:
However, one of the requirements for the project is to ensure that the graph can also be placed in PDF file if the user wants to generate a pdf using Microsoft ASP.NET Report Definition Language Client-side (rdlc) and Microsoft ReportViewer technology.
1) Would it be possible to some how directly you get the jqPlot graph as an image into a pdf file?
If no, I have figured out how to make use of jqPlot's API to create an image in another div section of the same ASPX page.
I just wanted to briefly describe the code:
2) Is it possible to send the imgelem variable which references an image to the Microsoft ReportViewer rdlc file? If yes, could someone please give me a high-level stepy-by-step plan as to how I should go about implementing such a feature?
rdlc - 如何使用 RDLC 编写表达式以显示百分比值以及图例值饼图
我正在使用 RDLC 生成报告。如何使用 RDLC 编写表达式以显示百分比值以及图例值饼图
rdlc - 如何在 RDLC 中的饼图中删除空值图例值
如何在 RDLC 的饼图中删除空值图例值。我在可见性属性中设置了一个表达式。
但它不起作用。但是数据集中的 grp 值为空。
visual-studio - Visual Studio 报告 (RDLC) - 一个报告中有多个表?
我是rdlc
第一次使用 Visual Studio 报告(文件),所以我对它还是很陌生,我不知道这是否真的可以做到。
我想要一个包含多个相同“类型”的表的报告(即:具有相同的列)。
现在,显然我可以通过向设计器添加多个表来“手动”完成此操作。但这里有个问题:我事先不知道我要展示多少张桌子!
所以基本上我想要的是某种“中继器”,一种将“表格列表”放在报告上的方法,然后在代码中传递一组数据源,用于填充它们。
这完全可以做到吗?我在设计师身上看不到任何明显的东西可以让我实现这一目标......这可能吗?
如果没有,是否可以使用更高级的解决方案(如 Crystal Reports)来完成?