当我尝试使用IE选项页面发送报告时 - >通过电子邮件发送页面我收到了错误。
This page might not function correctly because either your browser does not support scripts or active scripting is disabled
Home > Report Project3 > Report1
Home | My Subscriptions | Site Settings | Help
Your browser does not support scripts or has been configured not to allow scripts.
Report Viewer Configuration Error
The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebUserInterface, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" /> to the system.web/httpHandlers section of the web.config file, or add <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebUserInterface, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" /> to the system.webServer/handlers section for Internet Information Services 7 or later.
答案 0 :(得分:1)
您的问题似乎与浏览器相关,而不是与代码相关。似乎Internet Explorer的安全设置设置为高。你可以尝试一件事
在Internet Explorer中,转到工具 - &gt;互联网选项 - &gt;安全设置 - &gt; Internet并尝试启用与脚本相关的复选框,或选择“中”作为默认安全级别。
当您尝试通过电子邮件发送页面时会发生什么情况,IE会尝试在某些脚本的帮助下在您的计算机上打开电子邮件客户端(outlook)。似乎IE在高安全性下运行,这阻止了脚本的执行。
希望这会对你有所帮助。