ReportViewer 和动态创建的数据集
我看到 ReportViewer 对象可以从类或数据集中获取其数据。
如果我使用数据集方法,我需要创建一个报告可以识别的 XSD 文件。 有没有办法避免创建此 XSD 文件但仍使用数据集?
I saw that the ReportViewer object can get its data from a class or a dataset.
If I use the dataset method I need to create a XSD file that the report will know.
Is there a way to avoid creating this XSD file but still use datasets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在代码中动态使用非类型化数据集。创建它,填充它,然后将其设置为数据源。
就像下面的代码:
在任何你想要的地方使用你的
myDataSet
。Try using non-typed DataSet in your code on the fly. Create it, fill it and then set it as datasource.
like following code :
Use your
myDataSet
wherever you want.