質問

I have an MSSQL 2012 Reporting server set up, and many, many reports made in Sequel Server Data Tools. I would like to have access to the data returned in those reports through C#/ASP.NET.

The end result is to display the data in the KendoUI DataViz suite, but first I need to convert the reports into JSON on the server side.

Is this possible?

Edit: To be clear, I need to know how to access the report data from the web server. Converting data into JSON format is not what I need assistance with.

役に立ちましたか?

解決 2

Since I asked the question, I've learned I can use the atom feed button on the reports to download a .atom file, which contains a URL that provides report data in XML.

You'll need to replace the & in the URL with '&', and then you have a working URL.

他のヒント

Yes it is possible. I suggest you to take a look how to return JSON with ASP.NET MVC and how it works.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top