I created an ASP.NET core project, with .NET 5, and it contains iFrames whose src attribute referencing an SSRS report:
<iframe src=@($"http://localhost/MyReportSvc?param1=...") scrolling="no" style="width:625px;height:100%" frameborder="0" />
but the content is dynamic and the iframe height changes depending of the URL parameters.
Please tell me if there exists a way (surely in javascript) to have the height set automatically depending of the content' height.
thank you
plz note : I found this : related page, but I can't make it work in my blazor project. I hope it's not a cache problem. Can somebody try this and tell me if it works in a blazor project with .NET5?