Reputation: 65
i create sucessfully sql report in asp.net using visual stduio 2008 with sql server 2008 r2
i have a report name report1.rdll
now i have a form admin option and i add tab like reports
html
<asp:Panel runat="server" ID="reprtpanel">
<li>
<a href="">
<span>
Reports
</span>
</a>
</li>
</asp:Panel>
it show me like this
then any one please tell me how i call sql report ...
Upvotes: 0
Views: 83
Reputation: 1687
From the toolox-> Reporting drag a reportViewer control on your aspx page. Then from design view click on the arrow o the viewer to select the rdlc report that you created, as shown in the image
that should load your report on the aspx page
UPDATE: to configure the reports from remote server you can follow the steps from this 2 articles
Upvotes: 1