使用处理程序类

发布于 2024-11-26 05:17:51 字数 419 浏览 2 评论 0原文

我在处理程序类中编写了以下内容来检查会话 饱和。

 public void ProcessRequest(HttpContext context)
        {
            if (context.Session["UserID"] == null || context.Session["ClientCode"] == null || context.Session["UserType"] == null)
            {
                context.Response.Redirect("~/LogIn.aspx");
            }
        }

现在我需要让它影响我的应用程序中的每个 .aspx 页面,我该怎么做?

i have written following in the handler class to check the session
satate.

 public void ProcessRequest(HttpContext context)
        {
            if (context.Session["UserID"] == null || context.Session["ClientCode"] == null || context.Session["UserType"] == null)
            {
                context.Response.Redirect("~/LogIn.aspx");
            }
        }

now i need to make it affect on every .aspx page in my application how can i do it?

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

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

发布评论

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

评论(1

伴随着你 2024-12-03 05:17:51

为此,您需要一个 IHttpModule,或者订阅 Global.asax 中某处的 Application.BeginRequest 事件。前者更干净,但需要更改 Web.config,后者可以说不太干净,但代码较少,并且不需要更改配置。

You'll either need an IHttpModule for that, or subscribe to Application.BeginRequest event somewhere in Global.asax. Former is cleaner, but requires changes to Web.config, latter is arguably less clean, but it's less code and doesn't require configuration changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文