8

我正在为带有登录系统的网站使用输出缓存。我有每个用户都可以访问的全局页面。这些页面被缓存并且还使用母版页。

<%@ OutputCache Duration="3600" VaryByParam="none" VaryByCustom="userid" %>

我将用户登录详细信息存储在会话中。我的 global.asax 文件在这里:

public override string GetVaryByCustomString(HttpContext context, string arg)
{
    string result = String.Empty;
    if (arg == "userid")
    {
        object o = Session["UserID"];
        if (o != null) { result = o.ToString(); }
    }
    else { result = base.GetVaryByCustomString(context, arg); }
    return result;
}

我在母版页中有一个面板,对经过身份验证的用户可见。当用户登录并查看公共页面 A 时,另一个访客用户也会在页面 A 上看到经过身份验证的用户面板。如果访客首先查看页面 A,则经过身份验证的用户看不到页面 A 上的面板。

我的代码的哪一部分是错误的?我第一次使用VaryByCustom

编辑

我已经像这样修改了 global.asax,但文本文件中没有写入任何内容:

public override string GetVaryByCustomString(HttpContext context, string arg)
{
    string result = String.Empty;

    FileInfo t = new FileInfo(Server.MapPath("App_Data\\debug.txt"));
    StreamWriter Tex = t.AppendText();
    Tex.WriteLine("GetVaryByCustomString: " + arg);

    if (arg == "userid")
    {
        object o = Session["UserID"];
        if (o != null) { result = o.ToString(); }

        Tex.WriteLine("Checked UserID: " + o + Tex.NewLine);            
    }
    else { result = base.GetVaryByCustomString(context, arg); }

    Tex.Close();

    return result;
}
4

1 回答 1

0

我认为可能 Session["UserID"] 出于某种原因总是返回 null / 或有时返回 null,即使用户已通过身份验证。

在此功能要求之前仔细检查您是否设置了它。

于 2010-11-16T02:26:08.290 回答