asp.net-mvc – 防止在ASP.NET MVC中缓存属性,每次执行一个Action时强制执行属性
发布时间:2021-02-20 23:44:39 所属栏目:asp.Net 来源:互联网
导读:根据各种文章(例如 here和 here),可以缓存ASP.NET MVC操作的属性结果,并且在调用控制器操作时不再执行. 在我的情况下,这种行为是不可取的(例如,我有一个基于我自己的属性和IP的授权系统,每次都需要执行的角色检查,以及其他事情). 如何阻止ASP.NET MVC缓存我的
根据各种文章(例如 here和 here),可以缓存ASP.NET MVC操作的属性结果,并且在调用控制器操作时不再执行. 在我的情况下,这种行为是不可取的(例如,我有一个基于我自己的属性和IP的授权系统,每次都需要执行的角色检查,以及其他事情). 如何阻止ASP.NET MVC缓存我的属性/属性执行结果并保证每次都执行它们? 解决方法查看AuthorizeAttribute的源代码(在Codeplex上或通过Reflector),了解如何关闭授权页面的缓存.我将它重构为我的自定义授权属性的单独方法,该属性派生自AuthorizeAttribute.protected void CacheValidateHandler( HttpContext context,object data,ref HttpValidationStatus validationStatus ) { validationStatus = OnCacheAuthorization( new HttpContextWrapper( context ) ); } protected void SetCachePolicy( AuthorizationContext filterContext ) { // ** IMPORTANT ** // Since we're performing authorization at the action level,the authorization code runs // after the output caching module. In the worst case this could allow an authorized user // to cause the page to be cached,then an unauthorized user would later be served the // cached page. We work around this by telling proxies not to cache the sensitive page,// then we hook our custom authorization code into the caching mechanism so that we have // the final say on whether a page should be served from the cache. HttpCachePolicyBase cachePolicy = filterContext.HttpContext.Response.Cache; cachePolicy.SetProxyMaxAge( new TimeSpan( 0 ) ); cachePolicy.AddValidationCallback( CacheValidateHandler,null /* data */); } (编辑:岳阳站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- asp.net – 更改事件和IE8的jQuery问题
- asp.net-mvc – 什么是强类型的视图在ASP.NET MVC
- asp.net-mvc – 图像URL中的符号MVC导致一个潜在危险的Requ
- asp.net-mvc – MicrosoftMvcValidation.js VS jquery.vali
- 自定义每个用户的会话超时 – ASP.NET
- asp.net-mvc-3 – 带Razor的条件显示元素
- 使用System.Net.Mail中的SMTP发送邮件(带附件)
- 有标签的ASP.NET WebControl吗?
- asp.net-mvc – 不应加载引用程序集以执行
- asp.net-mvc – 在MVC ActionLink中使用Knockout绑定
推荐文章
站长推荐
- ASP.NET网站管理系统退出 清除浏览器缓存,Sessio
- asp.net-mvc – 在MVC Controller中访问GET参数
- ASP.NET AJAX与ASP.NET MVC中的jQuery
- asp.net – ASP MVC用户配置文件
- asp.net – GetExternalLoginInfoAsync()loginIn
- 为什么asp.net将页面包装在一个表单中?
- asp.net – Html.BeginForm()类型的扩展名
- asp.net – 来自WebHttpBinding的WCF服务中的Acc
- asp.net-mvc – ASP.NET MVC运行IIS7部署问题
- asp.net-mvc – 使用NLog记录未处理的异常? ELM
热点阅读