Hi,
Currently, I am using the following assembly and control to display a SSRS report on a .aspx page.
Assembly registered on the page :
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=12.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"
Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
Control used on the page:
<rsweb:ReportViewer ID="rptViewer" runat="server" ClientIDMode="Static" />
However, I want to move the .aspx page to .html. Is there a way I can show and render the SSRS Report Preview in a .html page?
Thanks.
