带有报表查看器的 ASp.net MVC?
如何在 ASP.net MVC 2.0 上设置 rdlc(报告文件,带有报告查看器)?
我已经创建了 rdlc 文件。
当我将报告查看器拖动到 mvc 页面中时,它会随机播放,并且与我们在 winform 应用程序/ webform 中所做的不一样。即使您创建新的 My First MVC 应用程序,报表查看器也会变形。我将报表查看器放在表格中,但仍然不适合。
我尝试创建一个排除在我的 mvc 母版页中的 Web 表单,并且报表查看器非常适合。
我该怎么办?
谢谢问候..
How can i set up rdlc (report file,with Reprort viewer) on ASP.net MVC 2.0?
I have created rdlc file..
And when i drag report viewer in the mvc page it shuffles and it doest not fit like what weve done in winform application / webform . Even you create new My First MVC application Report viewer also distorted.I place the report viewer in a table and not still fit.
I tried to create a webform that excluded in my mvc masterpage and the report viewer fits well.
Whats should i do?
Thanks in regards..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在我的博客上发布了代码。让我知道这是否有帮助。
http://blogs.msdn.com/b/sajoshi/archive/2010/06/16/asp-net-mvc-handling-ssrs-reports-with-reportviewer-part-i.aspx
I posted the code at my blog. Let me know if this is helpful.
http://blogs.msdn.com/b/sajoshi/archive/2010/06/16/asp-net-mvc-handling-ssrs-reports-with-reportviewer-part-i.aspx
ReportViewer 组件不适合与 ASP.NET MVC 一起使用,并且不受支持。您可以查看此示例。您可以让标准 WebForms 页面(不是 MVC)生成报告,然后将其包含在 MVC 应用程序内的 iframe 中,或者让它生成 PDF 格式的报告,然后可以嵌入该报告。
The ReportViewer component is not intended to be used with ASP.NET MVC and is unsupported. You may checkout this example. You could have a standard WebForms page (not MVC) generate the report and then include it either with iframe inside your MVC application or have it generate the report as PDF which then could be embedded.