3

当您通过 /ReportServer/ 访问报告时,我想为所有 SSRS 默认错误页面(下图)重新命名(并发送错误电子邮件)。我已经在处理 ASP OnError 事件,并且一些默认的 SSRS 错误似乎捕获了它们自己的异常,然后呈现此页面在 OnError 事件被触发之前取消响应。

关于如何处理 SSRS 以标记所有错误页面的任何想法?

报告服务错误

4

3 回答 3

1

不幸的是,在使用 SSRS 的视觉方面时你不能。如果您直接通过 SOAP 和 Web 服务使用报告,则可以。

于 2009-04-26T07:49:55.547 回答
1

我遇到了类似的问题,并提出了以下解决方案。如果 Microsoft 更改此特定方法,则很容易出现问题。下面的代码将被添加到页面的标题中,以确保它在加载 ReportViewer javascript 之后但在创建 RSClientController 的实例之前运行。

// This replaces a method in the ReportViewer javascript. If Microsoft updates 
// this particular method, it may cause problems, but that is unlikely to 
// happen.The purpose of this is to redirect the user to the error page when 
// an error occurs. The ReportViewer.ReportError event is not (always?) raised 
// for Remote Async reports
function OnReportFrameLoaded() {
    this.m_reportLoaded = true;
    this.ShowWaitFrame(false);

    if (this.IsAsync)
    {
        if(this.m_reportObject == null)
        {
            window.location = 
                '<%= HttpRuntime.AppDomainAppVirtualPath %>/Error.aspx';
        }
        else
        {
            this.m_reportObject.OnFrameVisible();
        }
    }
}
RSClientController.prototype.OnReportFrameLoaded = OnReportFrameLoaded;

Microsoft ReportViewer 脚本文件(在 Microsoft.ReportViewer.WebForms、8.0.0.0、.Net Framework 3.5 SP1 内)的原始代码是:

function OnReportFrameLoaded()
{
    this.m_reportLoaded = true;
    this.ShowWaitFrame(false);

    if (this.IsAsync && this.m_reportObject != null)
        this.m_reportObject.OnFrameVisible();
}
RSClientController.prototype.OnReportFrameLoaded = OnReportFrameLoaded;
于 2009-09-21T01:40:58.170 回答
1

我为 SSRS2005 和 2008 创建了这个解决方案。下面是 2008r2 版本

在 reportviewer.aspx 中,在前面添加</form>

<script type="text/javascript">
var rptDivString=document.getElementById('ReportViewerControl_ctl10_NonReportContent').innerHTML;
//alert( rptDivString );
var numPermError = rptDivString.search(/permissions/i);
if (numPermError>0)
{
var docTitle = document.title;
var reportName = docTitle.substr(0,docTitle.length-16);
alert('Reporting Services permissions error in report: ' +  reportName );
}
</script>
于 2011-07-20T16:25:45.320 回答