Click here to Skip to main content
15,921,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I an trying to use simple rdlc report in my website.
I an using reportwizard for this purpose.I have not added any dataset explicitly.while using the report wizard the dataset gets automaticaly created.

my aspx code is as follows..
XML
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
                          <LocalReport ReportPath="Report.rdlc">
                              <DataSources>
                                  <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet1" />
                              </DataSources>
                          </LocalReport>
                      </rsweb:ReportViewer>
                      <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData" TypeName="OPDataSetTableAdapters.TransactionMasterTableAdapter"></asp:ObjectDataSource>


am i doing something wrong?I m following the most simple steps here.I have Not written any code in code behind.why report is not showing any data?
Posted
Updated 27-Jan-14 20:53pm
v3
Comments
thatraja 28-Jan-14 3:14am    
Any error? You have data in your datasource? etc?
pwavell 28-Jan-14 3:49am    
i have checked dataset preview..it shows data.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900