user3044672
user3044672

Reputation: 65

Sql Service Reporting In Asp.Net

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

image report

then any one please tell me how i call sql report ...

Upvotes: 0

Views: 83

Answers (1)

Raphael
Raphael

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

enter image description here

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

  1. Adding and Configuring the ReportViewer Controls
  2. Using the WebForms ReportViewer Control

Upvotes: 1

Related Questions