0

我将值绑定到动态报告查看器。

单击按钮时,我将获得数据表。所以我在xsd中添加了数据表。

在 xsd 数据表中,我也正确插入了记录。

最后我得到了错误

Microsoft JScript 运行时错误:无法获取属性“OnReportLoaded”的值:对象为空或未定义

请在这个问题上帮助我

谢谢

4

1 回答 1

1

我有同样的问题,并将 ReportViewer 控件放在更新面板中更正:

帕特里克

<asp:UpdatePanel ID="UpdatePanel1" runat="server" >
    <Triggers > 
        <asp:PostBackTrigger ControlID="btnGetReport" />
    </Triggers> 
    <ContentTemplate> 

        <rsweb:ReportViewer ID="rvReportViewer" runat="server" />
        <asp:Button ID="btnGetReport" runat="server" Text="Submit"     onclick="btnGetReport_Click" />

    </ContentTemplate>
</asp:UpdatePanel>
于 2012-06-12T14:00:10.640 回答