Microsoft ReportViewer Web Control Requiring a ScriptManager

佐手、 提交于 2019-12-05 00:31:15
Jorge olivares

In my case just put the instruction

<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

in the aspx form source mode and works!!

The error looks like the Form Tag is missing while doing the Rendering. The ScriptManager requires a Form Tag with runat server to perform the Task.

I would suggest to you add all your controls to the Form property of the Page. In Sequence and ScriptManager should be the first control.

I hope this helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!