Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中有一个类ThreadLocal。您可以使用它来定义仅存在于线程范围内的静态字段。
我正在寻找类似的东西用于 ASP 自定义控件。我需要在请求的范围内定义一个在该控件的所有实例之间共享的静态字段。
是否存在开箱即用的东西?
您可以使用HttpContext.Items与每个请求关联的字典。
HttpContext.Items
在 ASCX 代码中,例如:
this.Context.Items.Add("key", value);
查看文档