作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 asp.net 的新手,正在尝试在 Sharepoint 中为我的报告使用报告查看器控件。
在我的 web.config 文件中,我添加了这一行:
<SafeControl Assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms.ReportViewer" TypeName="*" Safe="True"/>
在我的 aspx 页面中我注册了程序集
<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>
它给了我这个错误:
此页面上不允许使用“Microsoft.Reporting.WebForms.ReportViewer”控件类型。该类型未注册为安全。
当我将我的 aspx 页面中的代码更改为此时
<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms.ReportViewer" tagprefix="rsweb" %>
我明白了:
处理 时发生错误。未知的服务器标记“rsweb:ReportViewer”。
谁能帮帮我?谢谢
最佳答案
您需要安装 ReportViewer,可在 Microsoft 下载中找到。
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a941c6b2-64dd-4d03-9ca7-4017a0d164fd
关于c# - 未知服务器标记 'rsweb:ReportViewer',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6334542/
我是 asp.net 的新手,正在尝试在 Sharepoint 中为我的报告使用报告查看器控件。 在我的 web.config 文件中,我添加了这一行: 在我的 aspx 页面中我注册了程序集 它
我已经创建了 ssrs 报告。现在我想在我的 aspx 页面中调用该报告。我为此目的使用了以下代码。 但我收到以下错误:未知的服务器标记“rsweb:Reportviewer”。 最佳答
我是一名优秀的程序员,十分优秀!