开发者

i am getting this Error: "The report definition is not valid" while creating a report using the Report Wizard

开发者 https://www.devze.com 2023-03-12 05:31 出处:网络
i am getting this error when i\'m trying to create a report using the Report Wizard. The report definition is not valid.Details: The element \'TableCells\' in namespace \'http://schemas.microsoft.com

i am getting this error when i'm trying to create a report using the Report Wizard.

The report definition is not valid. Details: The element 'TableCells' in namespace 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition' has incomplete content. List of possible elements expected: 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:TableCell'. F:\mysite\myReport.rdlc

please help me with this guys!

my code looks something like this

<Table Name="table1"开发者_JS百科>
<Top>0.5in</Top>
<Style />
<Header>
  <RepeatOnNewPage>true</RepeatOnNewPage>
  <TableRows>
    <TableRow>
      <TableCells></TableCells>
      <Height>0in</Height>
    </TableRow>
  </TableRows>
</Header>
<Details>
  <TableRows>
    <TableRow>
      <TableCells></TableCells>
      <Height>0in</Height>
    </TableRow>
  </TableRows>
</Details>
<TableColumns />
<DataSetName>reportDataSet_DataTable1</DataSetName>
</Table>


Your <TableCells></TableCells> elements must contain at least one <TableCell>.

Does your dataset contain any columns?

0

精彩评论

暂无评论...
验证码 换一张
取 消