本文介绍了关闭注销后的数据问题仍然可以查看最近打开的选项卡中的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我清除了代码中的缓存,我在应用程序中运行了应用程序我打开了我的pdf预览,将在新的浏览器选项卡中打开但在注销后我的应用程序最近打开的选项卡仍然有pdf如何解决这个可以任何一个帮助请这个



我尝试了什么:



i cleared cache in code and i ran the application with in the application i opened my pdf preview that will open in new browser tab but after logout my application the recently opened tab still having the pdf how to resolve this can any one help on this please

What I have tried:

i tried

            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            Response.Cache.SetExpires(DateTime.Now - new TimeSpan(1, 0, 0));
            Response.Cache.SetLastModified(DateTime.Now);
            Response.Cache.SetAllowResponseInBrowserHistory(false);

推荐答案


这篇关于关闭注销后的数据问题仍然可以查看最近打开的选项卡中的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 02:13