How to render report as HTML in in .NET reporting
We are using Microsoft.Reporting.WebForms.LocalReport (RDLC)
Only 4 render extensions, pdf, excel, image and 1 more are available.
开发者_如何学JAVAWe want to render the report as HTML finally. How can we do that ? Any related suggestion ?
You would need to add a ReportViewer
control to your page.
http://msdn.microsoft.com/en-us/library/ms251671(v=VS.100).aspx
精彩评论