Similar to these:
https://github.com/BaakWu/Power-Bi-Razor-App
https://learn.microsoft.com/en-us/power-bi/report-server/quickstart-embed
https://blazorhelpwebsite.com/ViewBlogPost/5
Is there something, for free, out there, in order to host SSRS and have it rendered and displayed inside of a Blazor Server App?
Thanks in advance!
Have you tried docking it in an iFrame with the source set to the web link to the report?
I got this to work:
NOTE: using http:// in the source will definitely NOT work.
iframes allow you to set the source for their content to a URL. With SSRS having a URL for their reports, that gives you a way to link the report to the iframe in question. Additionally, SSRS reports allow for commands and parameters to also be used in that URL. IE: The rs:Embed=true and the Toolbar=false options you see in the URL I provided.
Make sure you copy and paste the URL you're trying to set as the source into a browser first though to make sure it'll work. If it doesn't load in it's own window/tab... it won't work in the code either.
If you want to pass a parameter to the source, an easy way is to do this:
For the iframe (Note the src="@(URL)"):
The button click used to generate it (Mine pops up in a modal):
And the C#: