我已经实现了一个HttpModule,它应该限制对我网站的/courses/目录的访问,但是它有一个主要问题。
Request.IsAuthenticated始终是false

这是代码:

using System;
using System.Web;

public class CourseAuthenticationModule : IHttpModule
{
    public void Dispose() { }

    public void Init(HttpApplication context)
    {
        context.BeginRequest += new EventHandler(BeginRequest);
    }

    public void BeginRequest(Object source, EventArgs e)
    {
        HttpApplication app = (HttpApplication)source;
        HttpContext context = app.Context;
        HttpRequest request = context.Request;
        HttpResponse response = context.Response;

        if (request.Path.ToLower().StartsWith("/courses/")
            && !request.IsAuthenticated)

        {
            response.Redirect("/");
        }
    }
}

我不知道为什么会这样,但是在访问true目录时,条件始终会评估为/courses/

编辑:

我在Web.Config中找到了这个。不确定是否相关。
<authentication mode="Forms">
  <forms loginUrl="userlogin.asp" name=".cc" protection="All" path="/" timeout="2880" slidingExpiration="true" />
</authentication>

难道我做错了什么?我怎样才能解决这个问题?

最佳答案

将BeginRequest作为第一个事件还为时过早,无法询问用户是否已通过身份验证。

在这一点上,您可以通过直接读取cookie来简单地检查其是否已通过身份验证:

string cookieName = FormsAuthentication.FormsCookieName;
HttpCookie authCookie = Context.Request.Cookies[cookieName];

if (null == authCookie || FormsAuthentication.Decrypt(authCookie.Value) == null)
{
    // is not authenticated
}

关于asp.net - Request.IsAuthenticated永远不会为真,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23944102/

10-10 15:35