0

We are working on Asp.Net Core 1.0 application, and we would like to display SSRS reports from the application but unfortunately SSRS is not supported in Asp.Net Core 1.0, may any one help with this dilemma?

Shaban
  • 11
  • 4

1 Answers1

0

You can add an object to the html page which holds the SSRS report viewer, you then hard code the path of the report in the "data":

<object 
    data="http://ServerName/ReportServer/Pages/ReportViewer.aspx?%2fFolderName%2fReportName&rs:Command=Render"
    width="100%" 
    height="800px">
</object>
Mike
  • 1,645
  • 3
  • 13
  • 21