gpt4 book ai didi

asp.net - 如何不缓存一个 ASP.NET 用户控件?

转载 作者:行者123 更新时间:2023-12-04 17:13:58 26 4
gpt4 key购买 nike

我在具有用户控件的页面中使用 OutputCache,但我不想缓存此特定用户控件,因为它与用户登录有关(如果我访问该页面,我看到该页面就好像我已通过身份验证另一个用户)。

我怎样才能做到这一点?

最佳答案

我个人使用 VaryByCustom 属性为登录和注销的用户提供不同的缓存页面 View :

<%@ OutputCache VaryByCustom="IsLoggedIn" Duration="30" VaryByParam="*" %>

然后在 global.asax 你放
public override string GetVaryByCustomString(HttpContext context,
string arg)
{
if (arg == "IsLoggedIn")
{

if (context.Request.IsAuthenticated)
{
return "Logged in: " + context.User.Identity.Name;
}
else
{
return "Not Logged In";
}

}
else
{
return base.GetVaryByCustomString(context, arg);
}

}

我只是要把这个扔出去。替代控制如何?

http://msdn.microsoft.com/en-us/library/ms228212.aspx

根据msdn网站:

The Substitution control lets you create areas on the page that can be updated dynamically and then integrated into a cached page. ... The Substitution control offers a simplified solution to partial page caching for pages where the majority of the content is cached. You can output-cache the entire page, and then use Substitution controls to specify the parts of the page that are exempt from caching.



我从来没有亲自使用过替代控件,但我前几天碰巧查了一下,听起来它可以以某种方式将更新的内容注入(inject)到其他缓存的页面输出中。

关于asp.net - 如何不缓存一个 ASP.NET 用户控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1256317/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com