当前位置:  开发笔记 > 编程语言 > 正文

Microsoft ReportViewer:会话过期错误

如何解决《MicrosoftReportViewer:会话过期错误》经验,为你挑选了1个好方法。



1> Jon Adams..:

我们遇到了同样的问题.到目前为止,我们只在会话到期时才找到它,但是他们在浏览器中使用了后退按钮来执行激进的缓存,这很好.但即使主页没有,ReportViewer也试图刷新.所以,我们刚刚添加了一些hacky Global.asax错误处理:

protected void Application_Error(object sender, EventArgs e)
{
    Exception exc = Server.GetLastError().GetBaseException();
    if (exc is Microsoft.Reporting.WebForms.AspNetSessionExpiredException)
    {
        Server.ClearError();
        Response.Redirect(FormsAuthentication.LoginUrl + "?ReturnUrl=" + HttpUtility.UrlEncode(Request.Url.PathAndQuery), true);
    }
}

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有