ReportViewer 没有数据集 (.xsd),只有 SqlDataSource
有什么方法可以在不使用 (.xsd) 数据集的情况下创建报告?我不想经历那样的过程,我想使用SqlDataSource。
好的,这就是我到目前为止所做的。
- 我创建了一个报表 (.rdlc)
- 一个页面 (.aspx)
- 在我创建的页面上,我放置了 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.
- I created a Report (.rdlc)
- A page (.aspx)
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).