重写System.Web.Mvc.ViewMasterPage,在哪里调用从缓存中抓取?

发布于 2024-07-08 21:45:11 字数 83 浏览 5 评论 0原文

我需要从 HttpCOntext.Items 请求缓存中获取一个值,我应该在哪里执行此操作?

是否有我应该重写的特定事件或构造函数?

I need to grab a value from the HttpCOntext.Items request cache, where should I do this?

Is there a particular event or contsructor I should override?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回首观望 2024-07-15 21:45:11

ViewMasterPage是Control的子类; 您应该能够在正常的页面事件周期中获取它:

namespace MvcDemo.Views.Shared {
    public partial class Site : System.Web.Mvc.ViewMasterPage {
        protected override void OnLoad(EventArgs e) {
            string nowWhat = Context.Items["nowWhat"] as string;
            base.OnLoad(e);
        }
    }
}

ViewMasterPage is a subclass of Control; and you should be able to get at it in the normal page event cycle:

namespace MvcDemo.Views.Shared {
    public partial class Site : System.Web.Mvc.ViewMasterPage {
        protected override void OnLoad(EventArgs e) {
            string nowWhat = Context.Items["nowWhat"] as string;
            base.OnLoad(e);
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文