reporting

How to render Active Reports WebViewer in ASP.NET MVC

不想你离开。 提交于 2019-11-28 17:39:19
I asked this question in the DataDynamics forum earlier today. I thought that maybe I'd get some sort of response here at SO. I am trying to get the WebViewer up and running in my ASP.NET MVC application. I am attempting to render the webviewer in the controller (webViewer.RenderControl(htmlTextWriter) and then put the results into ViewData and display the report in my view. I dont' even know if this is the correct way to go about this. Any help would be greatly appreciated. Controller code: public ActionResult Display() { CurrentReport = new DetailedReport { ReportData = new DetailedData() {

Rdlc tablix column header not repeating on every page “Repeat column header on every page” is already checked

故事扮演 提交于 2019-11-28 17:30:21
Here is my tablix properties What Am I missing? Please help thanks! This is particulary tricky using Tablix ... Give a look at this link: what to do when the RepeatColumnHeaders Property in a Tablix isn’t working In Advanced Mode select the Static Row Group you want to repeat and set these properties: .RepeatOnNewPage = True .KeepWithGroup = After .FixedData = True It is also recommended to set Tablix property .RepeatColumnHeaders = True in case Microsoft will release a patch to this strange behaviour. To get to Advanced Mode : make sure you can see the row groups and column groups window over

Open Source .Net Reporting Tool [closed]

折月煮酒 提交于 2019-11-28 16:51:42
I am looking for a reporting service/tool for visual Studio. My only restraint is my web server is off limits to me as far as installing ANYTHING. So I need something I can just include in my project. My users need to be able to export a report to PDF and without being able to use Crystal I am pretty much lost. Any ideas? fyireporting (released under Apache License) is worth a try. The fyiReporting RDL Project is a powerful report and charting system based on Report Definition Language (RDL). Tabular, free form, matrix, charts are fully supported. Report output may be displayed as HTML, PDF,

Best ASP.NET reporting engine with custom reports creation ability [closed]

十年热恋 提交于 2019-11-28 16:50:25
We need to choose the reporting engine for our ASP.NET application. The main functional requirement is an ability for end users (not programmers, just normal users) to create custom reports . We will be using SQL Server as a database so I am aware of some options: SQL Server Reporting services, Crystal Reports, Active Reports, even WindwardReports. But frankly speaking I've never used any of those except Reporting services and it's quite difficult to choose which one suits the best to customer needs of custom reports creation. Is it possible to get some pros and cons for these options or at

When to build a separate reporting database?

主宰稳场 提交于 2019-11-28 16:29:06
问题 We're building an application that has a database (yeah, pretty exciting huh :). The database is mainly transactional (to support the app) and also does a bit of "reporting" as part of the app - but nothing too strenuous. Above and beyond that we have some reporting requirements - but they're pretty vague and high-level at the moment. We have a standard reporting tool that we-use in-house which we'll use to do the "heavier" reporting as the requirements solidify. My question is: how do you

Crystal Reports vs ReportViewer Pros/Cons? [closed]

给你一囗甜甜゛ 提交于 2019-11-28 11:57:26
We have been designing our reports around Crystal Reports in VS2008 for our web application and I just discovered the Microsoft provided ReportViewer control. I've searched around a bit but cannot find a good breakdown of the pros and cons of each method of producing reports. I'm looking for pros and cons regarding: Ease of development Ease of deployment Ability to export data Ease of support and finding help on the web mattlant Well, I can answer for one side. I have used ReportViewer aka Client Side Reporting. I can tell you its easy to use, easy to deploy and easy to develop. If you can

How to Display Page Number in Report Body of SSRS 2008 R2?

雨燕双飞 提交于 2019-11-28 11:16:56
I think a lot of developers are facing the problem of try to display page numbers by using SSRS 2008 R2 . There is an alternative solution which requires SSRS 2010 + version . Otherwise you will get 1 all the time. Go to "Report" -> "Report Properties" -> "Code" In the Custom Code section, enter the following: Public Function PageNumber() as String Dim str as String str = Me.Report.Globals!PageNumber.ToString() Return str End Function Public Function TotalPages() as String Dim str as String str = Me.Report.Globals!TotalPages.ToString() Return str End Function Now you will be able to access

Watermark across the page in JasperReports

末鹿安然 提交于 2019-11-28 09:38:29
问题 We are using jasperReports and iReports in our web application to generate reports. When I explored jasper reports I was able to insert watermark inside the report easily.. However my purpose is to put the watermark String say (Michael Jackson) across the page. Going through the properties I can only find rotation option of left/right and upside down ... Is it possible to place watermark in the report across the page.. I am using ireport to design the report... 回答1: Rotating text to any angle

How to populate google charts using data from database created via code first - ASP.Net MVC

岁酱吖の 提交于 2019-11-28 08:58:43
问题 I want to replace the hard coded data in the code below with data from my database that I've created using the Code First approach. However, I literally have no idea how because I'm still pretty new to this. The Google Chart works perfectly with the hard coded values, but how to approach it using actual data from my database is where my understanding ends. There are plenty of tutorials out (on Code First) on how to do this using hard coded data but none on using data from the database . Can

SSRS report formatting a table to display data side by side

青春壹個敷衍的年華 提交于 2019-11-28 07:36:42
问题 I am trying to achieve the following layout for my report based on one query. +----+-------+----+-------+ | ID | Name | ID | Name | +----+-------+----+-------+ | 1 | Danny | 2 | Dave | | 3 | Sue | 4 | Jack | | 5 | Rita | 6 | Sarah | +----+-------+----+-------+ So I basically want one table, printing my data from left to right to save space on my page, rather than it printing one line and wasting all of the space on the right side of the paper, possibly even go 3 times across the width. This