ReportViewer 没有数据集 (.xsd),只有 SqlDataSource

发布于 2024-11-01 08:28:28 字数 255 浏览 2 评论 0原文

有什么方法可以在不使用 (.xsd) 数据集的情况下创建报告?我不想经历那样的过程,我想使用SqlDataSource。

好的,这就是我到目前为止所做的。

  1. 我创建了一个报表 (.rdlc)
  2. 一个页面 (.aspx)
  3. 在我创建的页面上,我放置了 ReportViewer 和 SqlDataSource。

仅此而已,我不知道如何将它们放在一起。

请帮忙...我是新手...

Is there any way I can create a report without using (.xsd) DataSet? I don't want to go through that way, I want to use SqlDataSource.

Okay, so this is what I did so far.

  1. I created a Report (.rdlc)
  2. A page (.aspx)
  3. On the page that I've created, I put a ReportViewer and SqlDataSource.

That's all, I don't know how to put them together.

Please help... I'm a newby...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对风讲故事 2024-11-08 08:28:28

MSDN 有几个页面包含 ReportViewer 示例和演练:

您不必使用数据集; ReportViewer 数据源集合将采用任何集合形式,例如对象列表。这里还有几个带有示例的页面:

每当我在本地处理模式下使用 ReportViewer 时,我都会将其与 iBatis 等数据映射器工具结合使用,并简单地将对象的 IList 提供给其中(包装在 ObjectDataSource 中)。

MSDN has several pages with ReportViewer samples and walkthroughs:

You don't have to use a DataSet; the ReportViewer data sources collection will take anything that is a collection, such as a list of objects. Here's just a couple more pages with examples:

Whenever I use the ReportViewer in local processing mode I use it in conjunction with a data mapper tool like iBatis and simply feed an IList<Something> of objects into it (wrapped in an ObjectDataSource).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文